diff options
Diffstat (limited to 'include/win2k.h')
-rw-r--r-- | include/win2k.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/win2k.h b/include/win2k.h index 88fdf78807..b7c5203289 100644 --- a/include/win2k.h +++ b/include/win2k.h @@ -54,6 +54,18 @@ File created by Christian Kostner, and tweaked a bit by Richard Hughes*/ #define BIGI(x) x##LL
#endif
+#ifndef _WIN32_WINNT_WIN8
+#define _WIN32_WINNT_WIN8 0x0602 // Windows 8
+#endif
+
+#ifndef _WIN32_WINNT_WINBLUE
+#define _WIN32_WINNT_WINBLUE 0x0603 // Windows 8.1
+#endif
+
+#ifndef _WIN32_WINNT_WIN10
+#define _WIN32_WINNT_WIN10 0x0A00 // Windows 10
+#endif
+
// collapsible groups for Vista
#ifndef LVGS_COLLAPSIBLE
#define LVGS_COLLAPSIBLE 0x00000008
|