| 36 | } |
| 37 | |
| 38 | LRESULT WINAPI SplashWindow::WndProc(HWND hWnd, UINT wMsg, WPARAM wParam, LPARAM lParam) |
| 39 | { |
| 40 | SplashWindow* pThis = (SplashWindow*)(LONG_PTR)GetWindowLongPtr(hWnd, GWLP_USERDATA); |
| 41 | |
| 42 | switch (wMsg) |
| 43 | { |
| 44 | case WM_CREATE: |
| 45 | break; |
| 46 | case WM_DESTROY: |
| 47 | PostQuitMessage(0); |
| 48 | break; |
| 49 | case WM_PAINT: |
| 50 | break; |
| 51 | } |
| 52 | return DefWindowProc(hWnd, wMsg, wParam, lParam); |
| 53 | } |
| 54 | |
| 55 | SplashWindow::SplashWindow() |
| 56 | { |
nothing calls this directly
no outgoing calls
no test coverage detected