MCPcopy Create free account
hub / github.com/TranslucentTB/TranslucentTB / MessageWindow

Method MessageWindow

TranslucentTB/windows/messagewindow.cpp:21–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19}
20
21MessageWindow::MessageWindow(WindowClass &classRef, Util::null_terminated_wstring_view windowName, DWORD style, DWORD extended_style, Window parent, const wchar_t *iconResource) :
22 m_WindowClass(&classRef, false),
23 m_IconResource(iconResource),
24 m_ProcPage(member_thunk::allocate_page())
25{
26 init(windowName, style, extended_style, parent);
27}
28
29MessageWindow::MessageWindow(Util::null_terminated_wstring_view className, Util::null_terminated_wstring_view windowName, HINSTANCE hInstance, DWORD style, DWORD extended_style, Window parent, const wchar_t *iconResource) :
30 m_WindowClass(new WindowClass(MakeWindowClass(className, hInstance, iconResource)), true),

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected