| 57 | } |
| 58 | |
| 59 | BOOL IsWindows8_1_Only() |
| 60 | { |
| 61 | HMODULE hKern32 = GetModuleHandleW(L"kernel32.dll"); |
| 62 | return GetProcAddress(hKern32, "CalloutOnFiberStack") != NULL // Export added in 6.3 (8.1), Removed in 10.0.10586 |
| 63 | && GetProcAddress(hKern32, "SetThreadSelectedCpuSets") == NULL; // Export added in 10.0 (10) |
| 64 | } |
| 65 | |
| 66 | void setWindowDarkModeEnabled(HWND hWnd, bool Enabled) |
| 67 | { |
no outgoing calls
no test coverage detected