IsWindowsXPSP1OrGreater function

bool IsWindowsXPSP1OrGreater()

Indicates if the current OS version matches, or is greater than, the Windows XP with Service Pack 1 (SP1) version.

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

Implementation

@pragma('vm:prefer-inline')
bool IsWindowsXPSP1OrGreater() => IsWindowsVersionOrGreater(
  HIBYTE(_WIN32_WINNT_WINXP),
  LOBYTE(_WIN32_WINNT_WINXP),
  1,
);