⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 expire.h

📁 程序运行时间限制的封装类
💻 H
字号:
/*
Author : Nish
EMail : nishforever@vsnl.com
*/

#define TYPERUNS 100
#define TYPEDAYS 200
class CExpire  
{
public:
	UINT GetDaysLeft();
	UINT GetRunsLeft();
	bool HasExpired();

	CExpire(const char*  ProgName,const char* KeyName, UINT Num, UINT ExpireType);
	virtual ~CExpire();
private:
	bool CreateProtectFile();
	bool m_filefound;
	bool LocateFile();
	char m_systemfolder[MAX_PATH];
	char m_filename[MAX_PATH];
	bool DeObfuscate(char *str, UINT& num);
	bool Obfuscate(UINT num, char *str);	
	bool GetRunCount(UINT& count);
	bool SetRunCount();
	bool SetRunCount(UINT count);
	bool GetDayCount(UINT& count);
	bool SetDayCount();
	bool CreateProgKey(const char*  ProgName, const char* KeyName);
	UINT m_ExpireType;
	UINT m_count;
	HKEY m_hKey;
	bool m_first;
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -