Add VC11 (VS2012) to an '#if _MSC_VER == 1500 || ...' test.
authorwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 19 Sep 2012 00:07:01 +0000 (00:07 +0000)
committerwmeier <wmeier@f5534014-38df-0310-8fa8-9805f1628bb7>
Wed, 19 Sep 2012 00:07:01 +0000 (00:07 +0000)
TBD: is really required.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@44995 f5534014-38df-0310-8fa8-9805f1628bb7

config.h.win32

index bfeb73a0766a6b3fcb30f457b4fc377ada9656e1..726a0791b522be4bf8fce15db4eb03457088198d 100644 (file)
 #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