| 42 | } |
| 43 | |
| 44 | BOOL IsWindows10_Only() |
| 45 | { |
| 46 | HMODULE hKern32 = GetModuleHandleW(L"kernel32.dll"); |
| 47 | HMODULE hNtuser = GetModuleHandleW(L"ntdll.dll"); |
| 48 | return GetProcAddress(hKern32, "SetThreadSelectedCpuSets") != NULL |
| 49 | && GetProcAddress(hNtuser, "ZwSetInformationCpuPartition") == NULL; |
| 50 | } |
| 51 | |
| 52 | BOOL IsWindows8_0_Only() |
| 53 | { |
no outgoing calls
no test coverage detected