| 170 | } |
| 171 | |
| 172 | void Window::SetWindowPos(INT posX, INT posY) |
| 173 | { |
| 174 | if (!::SetWindowPos(hwnd, HWND_NOTOPMOST, posX, posY, 0, 0, SWP_NOSIZE)) |
| 175 | throw Win32Exception(::GetLastError()); |
| 176 | } |
| 177 | |
| 178 | void Window::GetWindowPos(INT& posX, INT& posY) const |
| 179 | { |
nothing calls this directly
no test coverage detected