Platform.h
上传用户:goak128
上传日期:2013-07-17
资源大小:155k
文件大小:0k
源码类别:

控制台编程

开发平台:

C/C++

  1. // Platform.h : Platform 应用程序的主头文件
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error 在包含用于 PCH 的此文件之前包含“stdafx.h” 
  6. #endif
  7. #include "resource.h"       // 主符号
  8. // CPlatformApp:
  9. // 有关此类的实现,请参阅 Platform.cpp
  10. //
  11. class CPlatformApp : public CWinApp
  12. {
  13. public:
  14. CPlatformApp();
  15. // 重写
  16. public:
  17. virtual BOOL InitInstance();
  18. // 实现
  19. afx_msg void OnAppAbout();
  20. DECLARE_MESSAGE_MAP()
  21. };
  22. extern CPlatformApp theApp;