home *** CD-ROM | disk | FTP | other *** search
/ Learn 3D Graphics Programming on the PC / Learn_3D_Graphics_Programming_on_the_PC_Ferraro.iso / rwwin / rwmfc.h_ / rwmfc.bin
Text File  |  1995-11-14  |  1KB  |  43 lines

  1. // rwmfc.h : main header file for the RWMFC application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5. #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"           // main symbols
  9. #include <rwlib.h>
  10. #include <rwwin31.h>
  11.  
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CRwApp:
  14. // See rwmfc.cpp for the implementation of this class
  15. //
  16.  
  17. class CRwApp:public CWinApp
  18. {
  19.     public:
  20.     CRwApp();
  21.  
  22. // Overrides
  23.     virtual BOOL InitInstance();
  24.     virtual int ExitInstance();
  25.  
  26. // Implementation
  27.  
  28.     //{{AFX_MSG(CRwApp)
  29.     afx_msg void OnAppAbout();
  30.     afx_msg void OnUpdateDebuggingApis(CCmdUI * pCmdUI);
  31.     afx_msg void OnUpdateDebuggingAssertions(CCmdUI * pCmdUI);
  32.     afx_msg void OnUpdateDebuggingMessages(CCmdUI * pCmdUI);
  33.     afx_msg void OnUpdateDebuggingScripts(CCmdUI * pCmdUI);
  34.     afx_msg void OnDebuggingApis();
  35.     afx_msg void OnDebuggingAssertions();
  36.     afx_msg void OnDebuggingMessages();
  37.     afx_msg void OnDebuggingScripts();
  38.     //}}AFX_MSG
  39.       DECLARE_MESSAGE_MAP()
  40. };
  41.  
  42. /////////////////////////////////////////////////////////////////////////////
  43.