41 lines
500 B
C++
41 lines
500 B
C++
|
|
#ifndef _SplashLoading_h_
|
|
#define _SplashLoading_h_
|
|
|
|
#include <Windows.h>
|
|
#include <assert.h>
|
|
|
|
/**
|
|
2010.05.04 - prodongi
|
|
클라이언트가 맨처음 실행되면서 로딩할때 보여주는 스플래쉬 로딩 다이알로그
|
|
*/
|
|
class cSplashLoading
|
|
{
|
|
public:
|
|
cSplashLoading(bool apply);
|
|
~cSplashLoading() { clear(); }
|
|
void begin(HINSTANCE hInstance);
|
|
void end(HWND hWnd);
|
|
|
|
private:
|
|
void clear();
|
|
|
|
private:
|
|
bool m_apply;
|
|
STARTUPINFO m_si;
|
|
PROCESS_INFORMATION m_pi;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif |