dxgi: Fix a typo in a comment.
[wine.git] / include / sdkddkver.h
blobbaffe7a4a2840200a1b4735daa15dd1d09dfc25c
1 /*
2 * Copyright 2022 Alex Henrie
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifndef _INC_SDKDDKVER
20 #define _INC_SDKDDKVER
22 #define NTDDI_WIN2K 0x05000000
23 #define NTDDI_WIN2KSP1 0x05000100
24 #define NTDDI_WIN2KSP2 0x05000200
25 #define NTDDI_WIN2KSP3 0x05000300
26 #define NTDDI_WIN2KSP4 0x05000400
28 #define NTDDI_WINXP 0x05010000
29 #define NTDDI_WINXPSP1 0x05010100
30 #define NTDDI_WINXPSP2 0x05010200
31 #define NTDDI_WINXPSP3 0x05010300
32 #define NTDDI_WINXPSP4 0x05010400
34 #define NTDDI_WS03 0x05020000
35 #define NTDDI_WS03SP1 0x05020100
36 #define NTDDI_WS03SP2 0x05020200
37 #define NTDDI_WS03SP3 0x05020300
38 #define NTDDI_WS03SP4 0x05020400
40 #define NTDDI_LONGHORN 0x06000000
41 #define NTDDI_VISTA 0x06000000
42 #define NTDDI_WIN6 0x06000000
43 #define NTDDI_VISTASP1 0x06000100
44 #define NTDDI_WIN6SP1 0x06000100
45 #define NTDDI_WS08 0x06000100
46 #define NTDDI_VISTASP2 0x06000200
47 #define NTDDI_WIN6SP2 0x06000200
48 #define NTDDI_WS08SP2 0x06000200
49 #define NTDDI_VISTASP3 0x06000300
50 #define NTDDI_WIN6SP3 0x06000300
51 #define NTDDI_WS08SP3 0x06000300
52 #define NTDDI_VISTASP4 0x06000400
53 #define NTDDI_WIN6SP4 0x06000400
54 #define NTDDI_WS08SP4 0x06000400
56 #define NTDDI_WIN7 0x06010000
58 #define NTDDI_WIN8 0x06020000
60 #define NTDDI_WINBLUE 0x06030000
62 #define NTDDI_WINTHRESHOLD 0x0A000000
63 #define NTDDI_WIN10 0x0A000000
64 #define NTDDI_WIN10_TH2 0x0A000001
65 #define NTDDI_WIN10_RS1 0x0A000002
66 #define NTDDI_WIN10_RS2 0x0A000003
67 #define NTDDI_WIN10_RS3 0x0A000004
68 #define NTDDI_WIN10_RS4 0x0A000005
69 #define NTDDI_WIN10_RS5 0x0A000006
70 #define NTDDI_WIN10_19H1 0x0A000007
71 #define NTDDI_WIN10_VB 0x0A000008
72 #define NTDDI_WIN10_MN 0x0A000009
73 #define NTDDI_WIN10_FE 0x0A00000A
75 #define NTDDI_VERSION_FROM_WIN32_WINNT2(ver) ver##0000
76 #define NTDDI_VERSION_FROM_WIN32_WINNT(ver) NTDDI_VERSION_FROM_WIN32_WINNT2(ver)
78 #if !defined(NTDDI_VERSION) && defined(_WIN32_WINNT)
79 #define NTDDI_VERSION NTDDI_VERSION_FROM_WIN32_WINNT(_WIN32_WINNT)
80 #endif
82 #endif /* _INC_SDKDDKVER */