diff options
author | NIIBE Yutaka <[email protected]> | 2023-04-13 05:34:57 +0000 |
---|---|---|
committer | NIIBE Yutaka <[email protected]> | 2023-04-13 05:34:57 +0000 |
commit | cd13428a22b1a5587a52bab32488b4e1dd6f3b38 (patch) | |
tree | 8b5675a3f858eca98a1ec92fe16d7ddba9b94151 | |
parent | Merge branch 'master' into gniibe/t6275 (diff) | |
download | gnupg-cd13428a22b1a5587a52bab32488b4e1dd6f3b38.tar.gz gnupg-cd13428a22b1a5587a52bab32488b4e1dd6f3b38.zip |
Fix requirement for _WIN32_WINNT to use process related functions.
Signed-off-by: NIIBE Yutaka <[email protected]>
-rw-r--r-- | common/exechelp-w32.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 <stdio.h> |