MCPcopy Create free account
hub / github.com/9chu/LuaSTGPlus / WndProc

Method WndProc

LuaSTGPlus/SplashWindow.cpp:38–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38LRESULT 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
55SplashWindow::SplashWindow()
56{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected