aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2013-12-08 21:28:29 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2013-12-08 21:28:29 +0000
commit3ccec6e23b8fa7f2601118660a1f01d325eb2dd4 (patch)
tree41d56ef0f8be57dc0ee0b2a6301c6c178c783d19 /config.h.win32
parenta944c8ef7a32d62c3c1854d7b621a0c0ca9d4192 (diff)
Add MSC version for VS2013.
svn path=/trunk/; revision=53870
Diffstat (limited to 'config.h.win32')
-rw-r--r--config.h.win324
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h.win32 b/config.h.win32
index f36148a245..3aef64d136 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -237,9 +237,9 @@
*/
#define _U_
-/* Visual C 9 (2008), Visual C 10 (2010) and Visual C 11 (2012) need these prototypes */
+/* Visual C 9 (2008), Visual C 10 (2010) and Visual C 11 (2012) and Visual C 12 (2013) need these prototypes */
/* XXX: Can we use MSC_VER >= 1500 ?? */
-#if _MSC_VER == 1500 || _MSC_VER == 1600 || _MSC_VER == 1700
+#if _MSC_VER == 1500 || _MSC_VER == 1600 || _MSC_VER == 1700 || _MSC_VER == 1800
#define NTDDI_VERSION NTDDI_WIN2K
#define _WIN32_WINNT _WIN32_WINNT_WIN2K
#endif