123456789101112131415161718192021222324252627282930313233343536 |
- #pragma once
- #ifndef __AFXWIN_H__
- #error 在包含用于 PCH 的此文件之前包含“stdafx.h”
- #endif
- class CIDEApp : public CWinApp
- {
- public:
- CIDEApp();
-
- GdiplusStartupInput m_gdiplusStartupInput;
- ULONG_PTR m_gdiplusToken;
- public:
- virtual BOOL InitInstance();
- afx_msg void OnAppAbout();
- afx_msg void OnAppExit();
- DECLARE_MESSAGE_MAP()
- virtual int ExitInstance();
- public:
- int IsNoDlgLogin();
- };
- extern CIDEApp theApp;
|