| 50 | } |
| 51 | |
| 52 | BOOL 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 | |
| 59 | BOOL IsWindows8_1_Only() |
| 60 | { |
no outgoing calls
no test coverage detected