(svn r10562) -Fix: most of the MorphOS issues; MorphOS doesn't know about wchars, so disable all code that has to use wchars for MorphOS.

This commit is contained in:
rubidium
2007-07-14 20:30:35 +00:00
parent a2a3b7da24
commit b8e302d2a0
4 changed files with 30 additions and 11 deletions

View File

@@ -183,7 +183,9 @@ struct CStrT : public CBlobT<Tchar>
typedef CStrT<char , false> CStrA; ///< Case sensitive ANSI/UTF-8 string
typedef CStrT<char , true > CStrCiA; ///< Case insensitive ANSI/UTF-8 string
#if defined(HAS_WCHAR)
typedef CStrT<wchar_t, false> CStrW; ///< Case sensitive unicode string
typedef CStrT<wchar_t, true > CStrCiW; ///< Case insensitive unicode string
#endif /* HAS_WCHAR */
#endif /* STR_HPP */