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 » Compatibility change
Compatibility change [message #10872] Wed, 01 August 2007 23:06
arturbac is currently offline  arturbac
Messages: 91
Registered: May 2007
Location: Reda, Poland
Member

To achive compatibility with wchar from msvc/Gdiplus (and enabled treat wchar_t as builtin) i had to change

#ifdef PLATFORM_WINCE
typedef WCHAR wchar;
#else
typedef word wchar;
#endif

TO

#ifdef COMPILER_MSC
typedef WCHAR wchar;
#else
typedef word wchar;
#endif


Previous Topic: Array & Gdiplus::Pen problem
Next Topic: Explanations of some functions
Goto Forum:
  


Current Time: Tue Apr 23 12:36:06 CEST 2024

Total time taken to generate the page: 0.02792 seconds