mirror of
https://github.com/OpenTTD/OpenTTD.git
synced 2025-03-12 10:30:28 +00:00
Codechange: [Win32] Increase SDK version for 32-bit target.
Use the same Windows XP target as for 64-bit. Current MSVC version will not produce a binary that works on anything earlier anyway.
This commit is contained in:
parent
33099355b8
commit
f137b3057a
22
src/stdafx.h
22
src/stdafx.h
@ -157,22 +157,12 @@
|
|||||||
/* Stuff for MSVC */
|
/* Stuff for MSVC */
|
||||||
#if defined(_MSC_VER)
|
#if defined(_MSC_VER)
|
||||||
# pragma once
|
# pragma once
|
||||||
# ifdef _WIN64
|
# define NTDDI_VERSION NTDDI_WINXP // Windows XP
|
||||||
/* No 64-bit Windows below XP, so we can safely assume it as the target platform. */
|
# define _WIN32_WINNT 0x501 // Windows XP
|
||||||
# define NTDDI_VERSION NTDDI_WINXP // Windows XP
|
# define _WIN32_WINDOWS 0x501 // Windows XP
|
||||||
# define _WIN32_WINNT 0x501 // Windows XP
|
# define WINVER 0x0501 // Windows XP
|
||||||
# define _WIN32_WINDOWS 0x501 // Windows XP
|
# define _WIN32_IE_ 0x0600 // 6.0 (XP+)
|
||||||
# define WINVER 0x0501 // Windows XP
|
|
||||||
# define _WIN32_IE_ 0x0600 // 6.0 (XP+)
|
|
||||||
# else
|
|
||||||
/* Define a win32 target platform, to override defaults of the SDK
|
|
||||||
* We need to define NTDDI version for Vista SDK, but win2k is minimum */
|
|
||||||
# define NTDDI_VERSION NTDDI_WIN2K // Windows 2000
|
|
||||||
# define _WIN32_WINNT 0x0500 // Windows 2000
|
|
||||||
# define _WIN32_WINDOWS 0x400 // Windows 95
|
|
||||||
# define WINVER 0x0400 // Windows NT 4.0 / Windows 95
|
|
||||||
# define _WIN32_IE_ 0x0401 // 4.01 (win98 and NT4SP5+)
|
|
||||||
# endif
|
|
||||||
# define NOMINMAX // Disable min/max macros in windows.h.
|
# define NOMINMAX // Disable min/max macros in windows.h.
|
||||||
|
|
||||||
# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
# pragma warning(disable: 4244) // 'conversion' conversion from 'type1' to 'type2', possible loss of data
|
||||||
|
Loading…
Reference in New Issue
Block a user