#ifndef _SplashLoading_h_ #define _SplashLoading_h_ #include #include /** 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