www.pudn.com > 20041201221023_vczx_progtemplate.rar > Splash.h


#ifndef _SPLASH_SCRN_ 
#define _SPLASH_SCRN_ 
 
 
//类名:CSplashThread 
//功能:显示启动画面 
//作者:程红秀(chx20@163.com) 
//组织:三峡大学计算机系 
//日期:2004.8.11 
 
///////////////////////////////////////////////////////////////////////////// 
 
#include"..\LogoDlg.h" 
 
class CSplashThread : public CWinThread 
{ 
	DECLARE_DYNCREATE(CSplashThread)  //动态创建 
 
public: 
	void HideSplash();		  
 
public: 
	//{{AFXVIRTUAL(CSplashThread)  // 重载的虚函数 
	public: 
	virtual BOOL InitInstance(); 
	virtual int ExitInstance(); 
	//}}AFX_VIRTUAL 
 
protected: 
 
	 CLogoDlg*  m_pSplashDlg;  //声明一个对话框指针 
 
	//{{AFX_MSG(CSplashThread)  
	//}}AFX_MSG //放消息处理函数的地方 
 
	DECLARE_MESSAGE_MAP() 
}; 
 
///////////////////////////////////////////////////////////////////////////// 
#endif