IsWindows8OrGreater function version

int IsWindows8OrGreater()

Indicates if the current OS version matches, or is greater than, the Windows 8 version.

Implementation

int IsWindows8OrGreater() => IsWindowsVersionOrGreater(
  HIBYTE(_WIN32_WINNT_WIN8),
  LOBYTE(_WIN32_WINNT_WIN8),
  0,
);