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
Wrap
Text File
|
1995-11-14
|
1KB
|
43 lines
// 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()
};
/////////////////////////////////////////////////////////////////////////////