aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-09-19 00:07:01 +0000
committerBill Meier <wmeier@newsguy.com>2012-09-19 00:07:01 +0000
commit0a04950fe76f67e4dab65d1730bef7f330808fee (patch)
tree734d8d9443bf9eaf3a5024e1252ccbd1e7ec5131 /config.h.win32
parent32603d204a90a9deba7d8c66eedc830d7247cf25 (diff)
Add VC11 (VS2012) to an '#if _MSC_VER == 1500 || ...' test.
TBD: is really required. svn path=/trunk/; revision=44995
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win323
1 files changed, 2 insertions, 1 deletions
diff --git a/config.h.win32 b/config.h.win32
index bfeb73a076..726a0791b5 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -237,7 +237,8 @@
#endif
/* Visual C 9 (2008) & Visual C 10 (2010) need these prototypes */
-#if _MSC_VER == 1500 || _MSC_VER == 1600
+/* XXX: I'm guessing that this also applies to Visual C 11 (2012); TBD */
+#if _MSC_VER == 1500 || _MSC_VER == 1600 || MSC_VER == 1700
#define NTDDI_VERSION NTDDI_WIN2K
#define _WIN32_WINNT _WIN32_WINNT_WIN2K
#endif