From e771ede0699f0b4a05d9ab2d824a32a4df73964e Mon Sep 17 00:00:00 2001 From: cjihrig Date: Fri, 8 Dec 2017 10:14:25 -0500 Subject: [PATCH] win: set _WIN32_WINNT to 0x0600 This updates the value to Windows Vista. Fixes: https://github.com/libuv/libuv/issues/1671 PR-URL: https://github.com/libuv/libuv/pull/1675 Reviewed-By: Ben Noordhuis Reviewed-By: Refael Ackermann --- include/uv-win.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uv-win.h b/include/uv-win.h index b96bed22..4c6c50a2 100644 --- a/include/uv-win.h +++ b/include/uv-win.h @@ -20,7 +20,7 @@ */ #ifndef _WIN32_WINNT -# define _WIN32_WINNT 0x0502 +# define _WIN32_WINNT 0x0600 #endif #if !defined(_SSIZE_T_) && !defined(_SSIZE_T_DEFINED)