From cd13428a22b1a5587a52bab32488b4e1dd6f3b38 Mon Sep 17 00:00:00 2001 From: NIIBE Yutaka Date: Thu, 13 Apr 2023 14:34:57 +0900 Subject: [PATCH] Fix requirement for _WIN32_WINNT to use process related functions. Signed-off-by: NIIBE Yutaka --- common/exechelp-w32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/exechelp-w32.c b/common/exechelp-w32.c index adde71862..dfbb3a155 100644 --- a/common/exechelp-w32.c +++ b/common/exechelp-w32.c @@ -34,7 +34,7 @@ #if !defined(HAVE_W32_SYSTEM) #error This code is only used on W32. #else -#define _WIN32_WINNT 0x602 +#define _WIN32_WINNT 0x600 #endif #include