config-win32.h: drop setting WINVER

This commit is contained in:
Viktor Szakats 2025-07-20 23:33:05 +02:00
parent 57c014612f
commit 8c6051f0e0
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -48,10 +48,7 @@
# ifndef _WIN32_WINNT
# define _WIN32_WINNT VS2012_DEF_TARGET
# endif
# ifndef WINVER
# define WINVER VS2012_DEF_TARGET
# endif
# if (_WIN32_WINNT < VS2012_MIN_TARGET) || (WINVER < VS2012_MIN_TARGET)
# if _WIN32_WINNT < VS2012_MIN_TARGET
# ifdef _USING_V110_SDK71_
# error VS2012 does not support build targets prior to Windows XP
# else
@ -69,10 +66,7 @@
# ifndef _WIN32_WINNT
# define _WIN32_WINNT VS2008_DEF_TARGET
# endif
# ifndef WINVER
# define WINVER VS2008_DEF_TARGET
# endif
# if (_WIN32_WINNT < VS2008_MIN_TARGET) || (WINVER < VS2008_MIN_TARGET)
# if _WIN32_WINNT < VS2008_MIN_TARGET
# error VS2008 does not support build targets prior to Windows XP
# endif
# endif