| 16 | int RunMessagePump(); |
| 17 | |
| 18 | int APIENTRY wWinMain(_In_ HINSTANCE hInstance, |
| 19 | _In_opt_ HINSTANCE hPrevInstance, |
| 20 | _In_ LPWSTR lpCmdLine, |
| 21 | _In_ int m_nCmdShow) |
| 22 | { |
| 23 | hInst = hInstance; |
| 24 | UNREFERENCED_PARAMETER(hPrevInstance); |
| 25 | UNREFERENCED_PARAMETER(lpCmdLine); |
| 26 | nCmdShow = m_nCmdShow; |
| 27 | |
| 28 | AppWindow appWindow; |
| 29 | int retVal = RunMessagePump(); |
| 30 | return retVal; |
| 31 | } |
| 32 | |
| 33 | // Run the message pump for one thread. |
| 34 | int RunMessagePump() |
nothing calls this directly
no test coverage detected