MCPcopy Create free account
hub / github.com/PolyMC/PolyMC / IsWindows8_0_Only

Function IsWindows8_0_Only

launcher/ui/WinDarkmode.cpp:52–57  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

50}
51
52BOOL IsWindows8_0_Only()
53{
54 HMODULE hKern32 = GetModuleHandleW(L"kernel32.dll");
55 return GetProcAddress(hKern32, "CreateFile2") != NULL // Export added in 6.2 (8)
56 && GetProcAddress(hKern32, "AppXFreeMemory") != NULL; // Export added in 6.2 (8), removed in 6.3 (8.1)
57}
58
59BOOL IsWindows8_1_Only()
60{

Callers 1

setWindowDarkModeEnabledFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected