38 lines
		
	
	
		
			905 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			905 B
		
	
	
	
		
			C++
		
	
	
		
			Executable File
		
	
	
	
	
| // ex00mfc.h : main header file for the EX00MFC application
 | |
| //
 | |
| 
 | |
| #ifndef __AFXWIN_H__
 | |
| 	#error include 'ex00std.h' before including this file for PCH
 | |
| #endif
 | |
| 
 | |
| #include "ex00res.h"		// main symbols
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 | |
| // CEx00mfcApp:
 | |
| // See ex00mfc.cpp for the implementation of this class
 | |
| //
 | |
| 
 | |
| class CEx00mfcApp : public CWinApp
 | |
| {
 | |
| public:
 | |
| 	CEx00mfcApp();
 | |
| 
 | |
| // Overrides
 | |
| 	// ClassWizard generated virtual function overrides
 | |
| 	//{{AFX_VIRTUAL(CEx00mfcApp)
 | |
| 	public:
 | |
| 	virtual BOOL InitInstance();
 | |
| 	//}}AFX_VIRTUAL
 | |
| 
 | |
| // Implementation
 | |
| 
 | |
| 	//{{AFX_MSG(CEx00mfcApp)
 | |
| 		// NOTE - the ClassWizard will add and remove member functions here.
 | |
| 		//    DO NOT EDIT what you see in these blocks of generated code !
 | |
| 	//}}AFX_MSG
 | |
| 	DECLARE_MESSAGE_MAP()
 | |
| };
 | |
| 
 | |
| 
 | |
| /////////////////////////////////////////////////////////////////////////////
 |