IDE.h 592 B

123456789101112131415161718192021222324252627282930313233343536
  1. // IDE.h : IDE 应用程序的主头文件
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error 在包含用于 PCH 的此文件之前包含“stdafx.h”
  6. #endif
  7. // CIDEApp:
  8. // 有关此类的实现,请参阅 IDE.cpp
  9. //
  10. class CIDEApp : public CWinApp
  11. {
  12. public:
  13. CIDEApp();
  14. // GDI+
  15. GdiplusStartupInput m_gdiplusStartupInput;
  16. ULONG_PTR m_gdiplusToken;
  17. // 重写
  18. public:
  19. virtual BOOL InitInstance();
  20. // 实现
  21. afx_msg void OnAppAbout();
  22. afx_msg void OnAppExit();
  23. DECLARE_MESSAGE_MAP()
  24. virtual int ExitInstance();
  25. public:
  26. int IsNoDlgLogin();//是否是没对话框登录 -1:不是 0:失败 1:成功
  27. };
  28. extern CIDEApp theApp;