www.pudn.com > mischat.rar > mischat.h


// mischat.h : main header file for the mischat application 
// 
#pragma once 
 
#ifndef __AFXWIN_H__ 
	#error include 'stdafx.h' before including this file for PCH 
#endif 
 
#include "resource.h"       // main symbols 
 
 
// CmischatApp: 
// See mischat.cpp for the implementation of this class 
// 
 
class CmischatApp : public CWinApp, 
							public CBCGPWorkspace 
{ 
public: 
	CmischatApp(); 
 
	// Override from CBCGPWorkspace 
	virtual void PreLoadState (); 
 
 
// Overrides 
public: 
	virtual BOOL InitInstance(); 
	virtual int ExitInstance(); 
 
// Implementation 
	afx_msg void OnAppAbout(); 
	DECLARE_MESSAGE_MAP() 
}; 
 
extern CmischatApp theApp;