Home » U++ Library support » U++ Core » VC2010
Re: VC2010 [message #24872 is a reply to message #24871] |
Tue, 02 February 2010 10:59   |
|
also one more patch is needed for sockets:
In socket.h there was:
#if defined(PLATFORM_WIN32)
static int GetErrorCode() { return WSAGetLastError(); }
#define SOCKERR(x) COMBINE(WSA, x)
and most likely should be:
#if defined(PLATFORM_WIN32)
static int GetErrorCode() { return WSAGetLastError(); }
#if(_WIN32_WINNT >= 0x0601)
#define SOCKERR(x) WSA##x
#else
#define SOCKERR(x) COMBINE(WSA, x)
#endif
[Updated on: Tue, 02 February 2010 10:59] Report message to a moderator
|
|
|
Goto Forum:
Current Time: Fri May 02 04:10:36 CEST 2025
Total time taken to generate the page: 0.02674 seconds
|