提交 | 用户 | age
0ed438 1 #pragma once
Q 2
3
4 // CDialogEventLog 对话框
5
6 class CDialogEventLog : public CDialogEx
7 {
8     DECLARE_DYNAMIC(CDialogEventLog)
9
10 public:
11     CDialogEventLog(CWnd* pParent = nullptr);   // 标准构造函数
12     virtual ~CDialogEventLog();
13
14 // 对话框数据
15 #ifdef AFX_DESIGN_TIME
16     enum { IDD = IDD_DIALOG_EVENTLOG };
17 #endif
18
19 protected:
20     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV 支持
21
22     DECLARE_MESSAGE_MAP()
23 public:
24     CListCtrl m_list_eventlog;
25     afx_msg void OnBnClickedButtonClearEventlog();
26     afx_msg void OnBnClickedButtonReload();
27     virtual BOOL OnInitDialog();
28     int UpLoadEventLog();
29     int GetEventLogStatus();
b5e652 30     int m_nEventCount;
YC 31     int m_nCurEvent;
32     int GetEventLogByIndex(int nIndex);
33     afx_msg void OnTimer(UINT_PTR nIDEvent);
34     int DelayInit();
35     int GetEventProcess();
0ed438 36 };