| 123456789101112131415161718192021222324252627282930313233 |
- #pragma once
- #include <afxwin.h>
- class IDPMSDeamon : public CWinThread
- {
- DECLARE_DYNCREATE(IDPMSDeamon)
- public:
- IDPMSDeamon(void);
- ~IDPMSDeamon(void);
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CDisplayThread)
- public:
- virtual BOOL InitInstance();
- //}}AFX_VIRTUAL
- private:
- // ¶¯Ì¬ÈÎÎñ
- afx_msg void OnStartIDPMS(WPARAM wParam, LPARAM lParam);
- public:
- // Generated message map functions
- //{{AFX_MSG(CCounterThread)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
|