Welcome to mirror list, hosted at ThFree Co, Russian Federation.

isnt.hpp « unrar « thirdparty « src - github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 520ac8ad7d481f1c5bfadc4d46128e5d04445736 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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
};

DWORD WinNT();

#endif