fix compile error. definition of VOID in trunk still conflicts with windows headers. that was fixed in 6.0

This commit is contained in:
Vladislav Vaintroub 2009-09-13 19:38:06 +02:00
parent fc8db5e9ea
commit 12cea944fc

View file

@ -102,6 +102,14 @@ err:
}
#elif defined(__WIN__)
/* Workaround for BUG#32082 (Definition of VOID in my_global.h conflicts with
windows headers) */
#ifdef VOID
#undef VOID
#define VOID void
#endif
#include <iphlpapi.h>
/*