From 2facdf288df59690b62037cb91df472b2215e975 Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Mon, 16 May 2022 11:04:10 +0200 Subject: src/slirp.h: Bump the minimum Windows version to Windows 7 Windows Vista is not supported by its vendor anymore. Additionally, glib uses 0x0601 as setting for _WIN32_WINNT since version 2.53.6 already, so unless libslirp is used with a very old version of glib, we are depending on Windows 7 anyway. Signed-off-by: Thomas Huth Reviewed-by: Samuel Thibault Message-Id: <20220516090410.39727-1-thuth@redhat.com> --- src/slirp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/slirp.h b/src/slirp.h index a61ea15..4c956d9 100644 --- a/src/slirp.h +++ b/src/slirp.h @@ -6,7 +6,7 @@ /* as defined in sdkddkver.h */ #ifndef _WIN32_WINNT -#define _WIN32_WINNT 0x0600 /* Vista */ +#define _WIN32_WINNT 0x0601 /* Windows 7 */ #endif /* reduces the number of implicitly included headers */ #ifndef WIN32_LEAN_AND_MEAN -- cgit v1.1