IsWindows8OrGreater function

bool IsWindows8OrGreater()

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

To learn more, see learn.microsoft.com/windows/win32/api/versionhelpers/nf-versionhelpers-iswindows8orgreater.

Implementation

@pragma('vm:prefer-inline')
bool IsWindows8OrGreater() => IsWindowsVersionOrGreater(
  HIBYTE(_WIN32_WINNT_WIN8),
  LOBYTE(_WIN32_WINNT_WIN8),
  0,
);