U++ framework
Do not panic. Ask here before giving up.

Home » U++ Library support » U++ Core » VC2010
Re: VC2010 [message #24872 is a reply to message #24871] Tue, 02 February 2010 10:59 Go to previous messageGo to previous message
unodgs is currently offline  unodgs
Messages: 1367
Registered: November 2005
Location: Poland
Ultimate Contributor

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

 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: Getting timezone or UTC offset?
Next Topic: T* Detach() for ArrayMap
Goto Forum:
  


Current Time: Tue Sep 22 22:10:01 GMT+2 2026

Total time taken to generate the page: 0.03798 seconds