"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "isnt.hpp" see the
Fossies "Dox" file reference documentation and the last
Fossies "Diffs" side-by-side code changes report:
6.1.4_vs_6.1.5.
1 #ifndef _RAR_ISNT_
2 #define _RAR_ISNT_
3
4 enum WINNT_VERSION {
5 WNT_NONE=0,WNT_NT351=0x0333,WNT_NT4=0x0400,WNT_W2000=0x0500,
6 WNT_WXP=0x0501,WNT_W2003=0x0502,WNT_VISTA=0x0600,WNT_W7=0x0601,
7 WNT_W8=0x0602,WNT_W81=0x0603,WNT_W10=0x0a00
8 };
9
10 DWORD WinNT();
11
12
13 // Replace it with actual check when available.
14 bool IsWindows11OrGreater();
15
16 #endif