| 181 | } |
| 182 | |
| 183 | void Window::GetWindowPos(INT& posX, INT& posY) const |
| 184 | { |
| 185 | RECT windowRect; |
| 186 | if(!::GetWindowRect(hwnd, &windowRect)) |
| 187 | throw Win32Exception(::GetLastError()); |
| 188 | posX = windowRect.left; |
| 189 | posY = windowRect.top; |
| 190 | } |
| 191 | |
| 192 | void Window::ShowWindow(bool show) |
| 193 | { |
nothing calls this directly
no test coverage detected