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

📄 calendarlog.h

📁 wince5.0下的计算器程序,对初学wince的朋友很有帮助,arm9平台下的
💻 H
字号:

#ifndef _CDRLOG
#define _CDRLOG

typedef struct _CRLOG
{
	int LID;//索引号
	TCHAR rename[30];//日程主题
	TCHAR redate[11];//日程的安排日期
	TCHAR retime[9];//闹铃的时间,只在需要闹铃时使用
	int bAlarm;//是否闹铃 0:不开启闹铃默认状态,非0开启闹铃
	TCHAR reinfo[200];//日程事务说明文字
}CRLog;

#include <afxtempl.h>

class CJCRLog
{
public:
	BOOL FindForIndex(CRLog &redata,int nindex);
	int GetLogNumCount();
	int GetFreeID();
	BOOL InitCalendarInof();
	BOOL CAReplace(int nrep,CRLog newdata);
	BOOL DelLog(int ndel);
	BOOL AddLog(CRLog newdata);
	BOOL CAFind(CRLog &fdata,int findex);
	CString GetCalendarDateStr();
	CJCRLog();
	~CJCRLog();
private:
	CList<CRLog,CRLog&> crlist;
protected:
	BOOL SaveListInFile();
};

#endif

⌨️ 快捷键说明

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