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