MCPcopy Create free account
hub / github.com/TheRealMJP/Shadows / CreateMessageBox

Method CreateMessageBox

Shadows/SampleFramework11/Window.cpp:249–255  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

247}
248
249INT Window::CreateMessageBox(LPCWSTR message, LPCWSTR title, UINT type)
250{
251 if (title == NULL)
252 return ::MessageBox(hwnd, message, appName.c_str(), type);
253 else
254 return ::MessageBox(hwnd, message, title, type);
255}
256
257void Window::Maximize()
258{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected