aboutsummaryrefslogtreecommitdiffstats
path: root/config.h.win32
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-04-14 21:56:00 +0000
committerBill Meier <wmeier@newsguy.com>2010-04-14 21:56:00 +0000
commit808a95b14e94a7f1b9ce983faa577d596f4f4758 (patch)
treeef945960c00e8a4401dff48a8eac85cb4b361eee /config.h.win32
parent67b7737481a5b1c6aecdb1c7898770664355634d (diff)
Some changes req'd to build Wireshark with VS 2010 (VC10). [More changes still needed].
svn path=/trunk/; revision=32468
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 1b6dc039a2..a463161c5a 100644
--- a/config.h.win32
+++ b/config.h.win32
@@ -217,8 +217,8 @@
#define WIN32 1
#endif
-/* Visual C 9 (2008) now needs these prototypes */
-#if _MSC_VER == 1500
+/* Visual C 9 (2008) & Visual C 10 (2010) need these prototypes */
+#if _MSC_VER == 1500 || _MSC_VER == 1600
#define NTDDI_VERSION NTDDI_WIN2K
#define _WIN32_WINNT _WIN32_WINNT_WIN2K
#endif