From 8433bd7c7b274ae955425ef0b3332117806af298 Mon Sep 17 00:00:00 2001 From: Ralf Habacker Date: Thu, 7 Mar 2013 08:24:55 +0100 Subject: [PATCH 1/3] GetTcpTable2() isn't available in msvc windows XP headers (indicated by using _WIN32_WINNT 0x0501). --- dbus/dbus-sysdeps-win.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 1a34f90..28042b9 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -84,13 +84,13 @@ typedef struct _MIB_TCPTABLE2 { DWORD dwNumEntries; MIB_TCPROW2 table[ANY_SIZE]; } MIB_TCPTABLE2,*PMIB_TCPTABLE2; +#endif ULONG WINAPI GetTcpTable2( PMIB_TCPTABLE2 TcpTable, PULONG SizePointer, - WINBOOL Order + BOOL Order ); -#endif #include -- 1.7.4.msysgit.0