MCPcopy Create free account
hub / github.com/GameTechDev/PresentMon / CreateMessageWindow

Function CreateMessageWindow

IntelPresentMon/AppCef/source/winmain.cpp:150–159  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

148}
149
150HWND CreateMessageWindow(HINSTANCE instance_handle)
151{
152 WNDCLASSEX wcex = { 0 };
153 wcex.cbSize = sizeof(wcex);
154 wcex.lpfnWndProc = MessageWindowWndProc;
155 wcex.hInstance = instance_handle;
156 wcex.lpszClassName = MessageWindowClassName;
157 RegisterClassEx(&wcex);
158 return CreateWindow(MessageWindowClassName, 0, 0, 0, 0, 0, 0, HWND_MESSAGE, 0, instance_handle, 0);
159}
160
161void AppQuitMessageLoop()
162{

Callers 1

WinMainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected