Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
Bazaar
Status & Roadmap
FAQ
Authors & License
Forums
Funding Ultimate++
Search on this site
Search in forums












SourceForge.net Logo
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: 1366
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: Mon May 20 14:59:29 CEST 2024

Total time taken to generate the page: 0.00454 seconds