Description
Our iphlpapi_winetests has the following block of code (which is not in Wine):
#undef htonl
|
#undef htons
|
#undef ntohl
|
#undef ntohs
|
|
#define htonl(l) ((u_long)(l))
|
#define htons(s) ((u_short)(s))
|
#define ntohl(l) ((u_long)(l))
|
#define ntohs(s) ((u_short)(s))
|
These functions are incorrectly redefined, breaking some tests.