| 80 | } |
| 81 | |
| 82 | void Window::SetWindowStyle(DWORD newStyle) |
| 83 | { |
| 84 | if (!::SetWindowLongPtr(hwnd, GWL_STYLE, newStyle)) |
| 85 | throw Win32Exception(::GetLastError()); |
| 86 | |
| 87 | style = newStyle; |
| 88 | } |
| 89 | |
| 90 | void Window::SetExtendedStyle(DWORD newExStyle) |
| 91 | { |
nothing calls this directly
no test coverage detected