aboutsummaryrefslogtreecommitdiff
path: root/Src/external_dependencies/openmpt-trunk/include/unrar/isnt.hpp
blob: fed0b51737fc09ba4719e15995bbcc79d39de439 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _RAR_ISNT_
#define _RAR_ISNT_

enum WINNT_VERSION {
  WNT_NONE=0,WNT_NT351=0x0333,WNT_NT4=0x0400,WNT_W2000=0x0500,
  WNT_WXP=0x0501,WNT_W2003=0x0502,WNT_VISTA=0x0600,WNT_W7=0x0601,
  WNT_W8=0x0602,WNT_W81=0x0603,WNT_W10=0x0a00
};

DWORD WinNT();


// Replace it with actual check when available.
bool IsWindows11OrGreater();

#endif