MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / IsWindowMaximized

Function IsWindowMaximized

Source/Engine/Platform/Windows/WindowsWindow.cpp:49–55  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47namespace
48{
49 bool IsWindowMaximized(HWND window)
50 {
51 WINDOWPLACEMENT placement;
52 if (!::GetWindowPlacement(window, &placement))
53 return false;
54 return placement.showCmd == SW_MAXIMIZE;
55 }
56}
57
58WindowsWindow::WindowsWindow(const CreateWindowSettings& settings)

Callers 1

WndProcMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected