home *** CD-ROM | disk | FTP | other *** search
- // rwmfc.h : main header file for the RWMFC application
- //
-
- #ifndef __AFXWIN_H__
- #error include 'stdafx.h' before including this file for PCH
- #endif
-
- #include "resource.h" // main symbols
- #include <rwlib.h>
- #include <rwwin31.h>
-
- /////////////////////////////////////////////////////////////////////////////
- // CRwApp:
- // See rwmfc.cpp for the implementation of this class
- //
-
- class CRwApp:public CWinApp
- {
- public:
- CRwApp();
-
- // Overrides
- virtual BOOL InitInstance();
- virtual int ExitInstance();
-
- // Implementation
-
- //{{AFX_MSG(CRwApp)
- afx_msg void OnAppAbout();
- afx_msg void OnUpdateDebuggingApis(CCmdUI * pCmdUI);
- afx_msg void OnUpdateDebuggingAssertions(CCmdUI * pCmdUI);
- afx_msg void OnUpdateDebuggingMessages(CCmdUI * pCmdUI);
- afx_msg void OnUpdateDebuggingScripts(CCmdUI * pCmdUI);
- afx_msg void OnDebuggingApis();
- afx_msg void OnDebuggingAssertions();
- afx_msg void OnDebuggingMessages();
- afx_msg void OnDebuggingScripts();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
-