| 54 | } |
| 55 | |
| 56 | MONITORINFO MonitorInfo::GetFromPoint(POINT p) |
| 57 | { |
| 58 | MONITORINFO info |
| 59 | { |
| 60 | .cbSize = sizeof(info) |
| 61 | }; |
| 62 | GetMonitorInfo(MonitorFromPoint(p, MONITOR_DEFAULTTONEAREST), &info); |
| 63 | return info; |
| 64 | } |
| 65 | |
| 66 | MONITORINFO MonitorInfo::GetPrimary() |
| 67 | { |
nothing calls this directly
no outgoing calls
no test coverage detected