isnt.hpp 341 B

12345678910111213141516
  1. #ifndef _RAR_ISNT_
  2. #define _RAR_ISNT_
  3. enum WINNT_VERSION {
  4. WNT_NONE=0,WNT_NT351=0x0333,WNT_NT4=0x0400,WNT_W2000=0x0500,
  5. WNT_WXP=0x0501,WNT_W2003=0x0502,WNT_VISTA=0x0600,WNT_W7=0x0601,
  6. WNT_W8=0x0602,WNT_W81=0x0603,WNT_W10=0x0a00
  7. };
  8. DWORD WinNT();
  9. // Replace it with actual check when available.
  10. bool IsWindows11OrGreater();
  11. #endif