winpe.h
上传用户:ch83438830
上传日期:2007-01-01
资源大小:104k
文件大小:1k
源码类别:

文件操作

开发平台:

Visual C++

  1. // winpe.h : main header file for the WINPE application
  2. //
  3. #ifndef __AFXWIN_H__
  4. #error include 'stdafx.h' before including this file for PCH
  5. #endif
  6. #include "resource.h"       // main symbols
  7. #define WM_RESET_FRAMEVIEW (WM_USER + 10) //posted from doc.
  8. #define MakePtr(cast,ptr,addValue) (cast)((DWORD)(ptr)+(DWORD)(addValue))
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CWinpeApp:
  11. // See winpe.cpp for the implementation of this class
  12. //
  13. class CWinpeApp : public CWinApp
  14. {
  15. public:
  16. CWinpeApp();
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CWinpeApp)
  20. public:
  21. virtual BOOL InitInstance();
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. //{{AFX_MSG(CWinpeApp)
  25. afx_msg void OnAppAbout();
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. private:
  29. };
  30. /////////////////////////////////////////////////////////////////////////////