///////////////////////////////////////////////////////////////////// // MFCDialogDemo.h - Application Executive which defers most // // functionality to MFCDialogDemoDlg // // // // Jim Fawcett, Spring 2004 // ///////////////////////////////////////////////////////////////////// #pragma once #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols // CMFCDialogDemoApp: // See MFCDialogDemo.cpp for the implementation of this class // class CMFCDialogDemoApp : public CWinApp { public: CMFCDialogDemoApp(); // Overrides public: virtual BOOL InitInstance(); // Implementation DECLARE_MESSAGE_MAP() }; extern CMFCDialogDemoApp theApp;