| 64 | } |
| 65 | |
| 66 | MONITORINFO MonitorInfo::GetPrimary() |
| 67 | { |
| 68 | MONITORINFO info |
| 69 | { |
| 70 | .cbSize = sizeof(info) |
| 71 | }; |
| 72 | GetMonitorInfo(MonitorFromPoint(POINT{}, MONITOR_DEFAULTTOPRIMARY), &info); |
| 73 | return info; |
| 74 | } |
nothing calls this directly
no outgoing calls
no test coverage detected