X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/82713003dc446ad0353127abe66a1ecc66f4df67..fd85b0640ea48f66a27e5908930e9f004de698b6:/src/common/strconv.cpp diff --git a/src/common/strconv.cpp b/src/common/strconv.cpp index f60201d7d3..462faa010a 100644 --- a/src/common/strconv.cpp +++ b/src/common/strconv.cpp @@ -44,9 +44,6 @@ #ifdef HAVE_ICONV_H #include #endif -#ifdef HAVE_LANGINFO_H - #include -#endif #ifdef __WXMSW__ #include @@ -68,13 +65,22 @@ #define BSWAP_UTF32(str, len) BSWAP_UCS4(str, len) #define BSWAP_UTF16(str, len) BSWAP_UCS2(str, len) +// under Unix SIZEOF_WCHAR_T is defined by configure, but under other platforms +// it might be not defined - assume the most common value +#ifndef SIZEOF_WCHAR_T + #define SIZEOF_WCHAR_T 2 +#endif // !defined(SIZEOF_WCHAR_T) + #if SIZEOF_WCHAR_T == 4 -#define WC_NAME "UCS4" -#define WC_BSWAP BSWAP_UCS4 + #define WC_NAME "UCS4" + #define WC_BSWAP BSWAP_UCS4 #elif SIZEOF_WCHAR_T == 2 -#define WC_NAME "UTF16" -#define WC_BSWAP BSWAP_UTF16 -#define WC_UTF16 + #define WC_NAME "UTF16" + #define WC_BSWAP BSWAP_UTF16 + #define WC_UTF16 +#else // sizeof(wchar_t) != 2 nor 4 + // I don't know what to do about this + #error "Weird sizeof(wchar_t): please report your platform details to wx-users mailing list" #endif // ---------------------------------------------------------------------------- @@ -91,7 +97,7 @@ WXDLLEXPORT_DATA(wxMBConv *) wxConvCurrent = &wxConvLibc; #ifdef WC_UTF16 -static size_t encode_utf16(wxUint32 input,wxUint16*output) +static size_t encode_utf16(wxUint32 input, wchar_t *output) { if (input<=0xffff) { @@ -113,7 +119,7 @@ static size_t encode_utf16(wxUint32 input,wxUint16*output) } } -static size_t decode_utf16(wxUint16*input,wxUint32&output) +static size_t decode_utf16(const wchar_t* input, wxUint32& output) { if ((*input<0xd800) || (*input>0xdfff)) { @@ -351,7 +357,7 @@ size_t wxMBConvUTF8::WC2MB(char *buf, const wchar_t *psz, size_t n) const { wxUint32 cc; #ifdef WC_UTF16 - size_t pa = decode_utf16(psz,cc); + size_t pa = decode_utf16(psz, cc); psz += (pa == (size_t)-1) ? 1 : pa; #else cc=(*psz++) & 0x7fffffff;