need manifest to support
| 12 | public: |
| 13 | // need manifest to support |
| 14 | static OSVERSIONINFOW Version() |
| 15 | { |
| 16 | OSVERSIONINFOW info = { sizeof(OSVERSIONINFOW) }; |
| 17 | GetVersionExW(&info); |
| 18 | return info; |
| 19 | } |
| 20 | static SIZE screenSize() |
| 21 | { |
| 22 | HMONITOR hmt = MonitorFromWindow(nullptr, MONITOR_DEFAULTTOPRIMARY); |
nothing calls this directly
no outgoing calls
no test coverage detected