| 137 | } |
| 138 | |
| 139 | void SplashWindow::threadJob() |
| 140 | { |
| 141 | createWindow(); |
| 142 | |
| 143 | // ��һ����Ϣѭ�� |
| 144 | MSG msg; |
| 145 | while (GetMessage(&msg, NULL, 0, 0)) |
| 146 | { |
| 147 | TranslateMessage(&msg); |
| 148 | DispatchMessage(&msg); |
| 149 | } |
| 150 | |
| 151 | UnregisterClass(CLASSNAME, GetModuleHandle(NULL)); |
| 152 | } |
| 153 | |
| 154 | void SplashWindow::ShowSplashWindow(Gdiplus::Image* bkImage)LNOEXCEPT |
| 155 | { |