Platform.h
上传用户:easylife05
上传日期:2007-02-14
资源大小:393k
文件大小:1k
源码类别:

PlugIns编程

开发平台:

Visual C++

  1. // Platform.h : Platform 应用程序的主头文件
  2. //
  3. #pragma once
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7. #include "resource.h"       // 主符号
  8. #include "Platform_i.h"
  9. // CPlatformApp:
  10. // 有关此类的实现,请参阅 Platform.cpp
  11. //
  12. class CPlatformApp : public CWinApp
  13. {
  14. public:
  15. CPlatformApp();
  16. // 重写
  17. public:
  18. virtual BOOL InitInstance();
  19. // 实现
  20. afx_msg void OnAppAbout();
  21. DECLARE_MESSAGE_MAP()
  22. BOOL ExitInstance(void);
  23. // afx_msg void OnFileOpen();
  24. // virtual CDocument* OpenDocumentFile(LPCTSTR lpszFileName);
  25. };
  26. extern CPlatformApp theApp;