mfc1.h 483 B

1234567891011121314151617181920212223242526272829
  1. // mfc1.h : main header file for the mfc1 application
  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" // main symbols
  8. // Cmfc1App:
  9. // See mfc1.cpp for the implementation of this class
  10. //
  11. class Cmfc1App : public CWinApp
  12. {
  13. public:
  14. Cmfc1App();
  15. // Overrides
  16. public:
  17. virtual BOOL InitInstance();
  18. // Implementation
  19. afx_msg void OnAppAbout();
  20. DECLARE_MESSAGE_MAP()
  21. };
  22. extern Cmfc1App theApp;