aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2022-05-16 11:04:10 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2022-05-17 00:46:46 +0200
commit2facdf288df59690b62037cb91df472b2215e975 (patch)
treeeed6c83355fb9d6c095ce5e82d1c9b2b00940807
parent3ee97215ab2479e998071d7b4d1911de794a3107 (diff)
downloadslirp-2facdf288df59690b62037cb91df472b2215e975.zip
slirp-2facdf288df59690b62037cb91df472b2215e975.tar.gz
slirp-2facdf288df59690b62037cb91df472b2215e975.tar.bz2
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 <thuth@redhat.com> Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org> Message-Id: <20220516090410.39727-1-thuth@redhat.com>
-rw-r--r--src/slirp.h2
1 files changed, 1 insertions, 1 deletions
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