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

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-02-16 23:17:15 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2021-02-16 23:17:15 +0300
commitd23bb978dbc92c3e35b210961c41e492145e022c (patch)
tree4d06dc0fd52f2745d99ddfb28ffc65477108c80c
parentcd85c07b31eadfca1859c216d568b70e2e354094 (diff)
Bump _WIN32_WINNT header requirements.
-rw-r--r--include/llfio/v2.0/config.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/llfio/v2.0/config.hpp b/include/llfio/v2.0/config.hpp
index a25cb21b..08dc7e2e 100644
--- a/include/llfio/v2.0/config.hpp
+++ b/include/llfio/v2.0/config.hpp
@@ -88,12 +88,12 @@ Distributed under the Boost Software License, Version 1.0.
#if defined(_WIN32)
#if !defined(_WIN32_WINNT)
-#define _WIN32_WINNT 0x0600
-#elif _WIN32_WINNT < 0x0600
-#error _WIN32_WINNT must at least be set to Windows Vista for LLFIO to work
+#define _WIN32_WINNT 0x0601
+#elif _WIN32_WINNT < 0x0601
+#error _WIN32_WINNT must at least be set to Windows 7 for LLFIO to work
#endif
-#if defined(NTDDI_VERSION) && NTDDI_VERSION < 0x06000000
-#error NTDDI_VERSION must at least be set to Windows Vista for LLFIO to work
+#if defined(NTDDI_VERSION) && NTDDI_VERSION < 0x06010000
+#error NTDDI_VERSION must at least be set to Windows 7 for LLFIO to work
#endif
#endif