From d23bb978dbc92c3e35b210961c41e492145e022c Mon Sep 17 00:00:00 2001 From: "Niall Douglas (s [underscore] sourceforge {at} nedprod [dot] com)" Date: Tue, 16 Feb 2021 20:17:15 +0000 Subject: Bump _WIN32_WINNT header requirements. --- include/llfio/v2.0/config.hpp | 10 +++++----- 1 file 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 -- cgit v1.2.3