Returns the extended window style for the specified window
| 65 | // Returns the extended window style for the specified window |
| 66 | // |
| 67 | static 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 | // |
no outgoing calls
no test coverage detected