| 14 | namespace Win32 { |
| 15 | |
| 16 | WINDOWPLACEMENT GetWindowPlacement(HWND hwnd) |
| 17 | { |
| 18 | WINDOWPLACEMENT placement; |
| 19 | placement.length = sizeof(placement); |
| 20 | if (!::GetWindowPlacement(hwnd, &placement)) |
| 21 | ThrowLastError("GetWindowPlacement"); |
| 22 | return placement; |
| 23 | } |
| 24 | |
| 25 | POINT GetMessagePos() |
| 26 | { |
no test coverage detected