// MFC Application.h : main header file for the MFC Application application // #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols // CMFCApplicationApp: // See MFC Application.cpp for the implementation of this class // class CMFCApplicationApp : public CWinApp { public: CMFCApplicationApp(); // Overrides public: virtual BOOL InitInstance(); // Implementation COleTemplateServer m_server; // Server object for document creation afx_msg void OnAppAbout(); DECLARE_MESSAGE_MAP() }; extern CMFCApplicationApp theApp;