///////////////////////////////////////////////////////////////////// // MFCFrameWin.h - Declares CWinApp derived class. // // That's were the message loop is implemented. // // // // 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 // CMFCFrameWinApp: // See MFCFrameWin.cpp for the implementation of this class // class CMFCFrameWinApp : public CWinApp { public: CMFCFrameWinApp(); // Overrides public: virtual BOOL InitInstance(); // Implementation public: afx_msg void OnAppAbout(); DECLARE_MESSAGE_MAP() }; extern CMFCFrameWinApp theApp;