#include <langinfo.h>
#endif
+#ifdef __WXMSW__
+ #include <windows.h>
+#endif
+
#include "wx/debug.h"
#include "wx/strconv.h"
-#ifdef WORDS_BIGENDIAN
+#if defined(WORDS_BIGENDIAN) || defined(__STDC_ISO_10646__)
#define BSWAP_UCS4(str, len)
#define BSWAP_UCS2(str, len)
#else
#if wxUSE_WCHAR_T
+#ifdef WC_UTF16
+
static size_t encode_utf16(wxUint32 input,wxUint16*output)
{
if (input<=0xffff) {
}
}
+#endif // WC_UTF16
+
// ----------------------------------------------------------------------------
// wxMBConv
// ----------------------------------------------------------------------------