| 93 | } |
| 94 | |
| 95 | void Window::SetExtendedStyle(DWORD newExStyle) |
| 96 | { |
| 97 | if(!::SetWindowLongPtr(hwnd, GWL_EXSTYLE, newExStyle)) |
| 98 | throw Win32Exception(::GetLastError()); |
| 99 | |
| 100 | exStyle = newExStyle; |
| 101 | } |
| 102 | |
| 103 | LONG_PTR Window::GetWindowStyle() const |
| 104 | { |
nothing calls this directly
no test coverage detected