Commit 12cea944 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

fix compile error. definition of VOID in trunk still conflicts with windows...

fix compile error. definition of VOID in trunk still conflicts with windows headers. that was fixed in 6.0
parent fc8db5e9
......@@ -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>
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment