From 80cfa57234255667a86d46096093099349a7262a Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Fri, 22 Nov 2024 17:54:17 +0900 Subject: [PATCH] [Feature #20563] Update required Windows version Update the default `NTVER`, so that the declarations of APIs introduced since Windows 8 will be enabled. https://learn.microsoft.com/cpp/porting/modifying-winver-and-win32-winnt --- win32/Makefile.sub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win32/Makefile.sub b/win32/Makefile.sub index ce4ea06c92..5fc9a6d0d5 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -176,7 +176,7 @@ PLATFORM = mswin32 !error RT not defined. Retry from configure pass. !endif !ifndef NTVER -NTVER = 0x0600 +NTVER = 0x0602 # _WIN32_WINNT_WIN8 !endif !ifdef NTVER ARCHDEFS = -D_WIN32_WINNT=$(NTVER) $(ARCHDEFS)