| 1117 | } |
| 1118 | |
| 1119 | DWORD CTopLevelWindow::GetCurrentColorizationColor() const |
| 1120 | { |
| 1121 | DWORD color{}; |
| 1122 | |
| 1123 | if (os::buildNumber < os::w11_23h2) |
| 1124 | { |
| 1125 | DWORD flags{}; |
| 1126 | color = GetWindowColorizationColor(static_cast<BYTE>(*GetCurrentDefaultColorizationFlags(&flags) | 8u)); |
| 1127 | } |
| 1128 | else |
| 1129 | { |
| 1130 | color = GetSolidColorCaptionColor(); |
| 1131 | } |
| 1132 | |
| 1133 | return color; |
| 1134 | } |
| 1135 | |
| 1136 | CTopLevelWindow::WindowFrame* CTopLevelWindow::s_ChooseWindowFrameFromStyle(char a1, bool a2, bool a3) |
| 1137 | { |
nothing calls this directly
no outgoing calls
no test coverage detected