MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/SPlisHSPlasH / getWindowExStyle

Function getWindowExStyle

extern/glfw/src/win32_window.c:67–75  ·  view source on GitHub ↗

Returns the extended window style for the specified window

Source from the content-addressed store, hash-verified

65// Returns the extended window style for the specified window
66//
67static DWORD getWindowExStyle(const _GLFWwindow* window)
68{
69 DWORD style = WS_EX_APPWINDOW;
70
71 if (window->monitor || window->floating)
72 style |= WS_EX_TOPMOST;
73
74 return style;
75}
76
77// Returns the image whose area most closely matches the desired one
78//

Callers 8

applyAspectRatioFunction · 0.85
updateWindowStylesFunction · 0.85
windowProcFunction · 0.85
createNativeWindowFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected