| 175 | } |
| 176 | |
| 177 | void Window::SetWindowPos(INT posX, INT posY) |
| 178 | { |
| 179 | if(!::SetWindowPos(hwnd, HWND_NOTOPMOST, posX, posY, 0, 0, SWP_NOSIZE)) |
| 180 | throw Win32Exception(::GetLastError()); |
| 181 | } |
| 182 | |
| 183 | void Window::GetWindowPos(INT& posX, INT& posY) const |
| 184 | { |
nothing calls this directly
no test coverage detected