From d265d9f434b6209c2284935342a3105936e88d01 Mon Sep 17 00:00:00 2001 From: rdb Date: Mon, 7 Oct 2013 15:34:34 +0000 Subject: [PATCH] MSVC 2010 requires _WIN32_WINNT to be defined to 0x0403 or higher. --- direct/src/plugin_activex/stdafx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/plugin_activex/stdafx.h b/direct/src/plugin_activex/stdafx.h index 585130917c..e23d8c004e 100644 --- a/direct/src/plugin_activex/stdafx.h +++ b/direct/src/plugin_activex/stdafx.h @@ -15,7 +15,7 @@ #endif #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later. -#define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 2000 or later. +#define _WIN32_WINNT 0x0403 // Change this to the appropriate value to target Windows 2000 or later. #endif #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.