// IDE.h : IDE 应用程序的主头文件 // #pragma once #ifndef __AFXWIN_H__ #error 在包含用于 PCH 的此文件之前包含“stdafx.h” #endif // CIDEApp: // 有关此类的实现,请参阅 IDE.cpp // class CIDEApp : public CWinApp { public: CIDEApp(); // GDI+ 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();//是否是没对话框登录 -1:不是 0:失败 1:成功 }; extern CIDEApp theApp;