IsWindowsXPSP3OrGreater function

bool IsWindowsXPSP3OrGreater()

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

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

Implementation

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