+ if ( verMaj )
+ *verMaj = s_major;
+ if ( verMin )
+ *verMin = s_minor;
+
+ return s_ver;
+}
+
+// ----------------------------------------------------------------------------
+// sleep functions
+// ----------------------------------------------------------------------------
+
+void wxUsleep(unsigned long milliseconds)
+{
+ ::Sleep(milliseconds);
+}
+
+void wxSleep(int nSecs)
+{
+ wxUsleep(1000*nSecs);
+}
+
+// ----------------------------------------------------------------------------
+// font encoding <-> Win32 codepage conversion functions
+// ----------------------------------------------------------------------------
+
+extern WXDLLIMPEXP_BASE long wxEncodingToCharset(wxFontEncoding encoding)
+{
+ switch ( encoding )
+ {
+ // although this function is supposed to return an exact match, do do
+ // some mappings here for the most common case of "standard" encoding
+ case wxFONTENCODING_SYSTEM:
+ return DEFAULT_CHARSET;
+
+ case wxFONTENCODING_ISO8859_1:
+ case wxFONTENCODING_ISO8859_15:
+ case wxFONTENCODING_CP1252:
+ return ANSI_CHARSET;
+
+#if !defined(__WXMICROWIN__)
+ // The following four fonts are multi-byte charsets
+ case wxFONTENCODING_CP932:
+ return SHIFTJIS_CHARSET;
+
+ case wxFONTENCODING_CP936:
+ return GB2312_CHARSET;
+
+ case wxFONTENCODING_CP949:
+ return HANGUL_CHARSET;
+
+ case wxFONTENCODING_CP950:
+ return CHINESEBIG5_CHARSET;
+
+ // The rest are single byte encodings
+ case wxFONTENCODING_CP1250:
+ return EASTEUROPE_CHARSET;
+
+ case wxFONTENCODING_CP1251:
+ return RUSSIAN_CHARSET;
+
+ case wxFONTENCODING_CP1253:
+ return GREEK_CHARSET;
+
+ case wxFONTENCODING_CP1254:
+ return TURKISH_CHARSET;
+
+ case wxFONTENCODING_CP1255:
+ return HEBREW_CHARSET;
+
+ case wxFONTENCODING_CP1256:
+ return ARABIC_CHARSET;
+
+ case wxFONTENCODING_CP1257:
+ return BALTIC_CHARSET;
+
+ case wxFONTENCODING_CP874:
+ return THAI_CHARSET;
+#endif // !__WXMICROWIN__
+
+ case wxFONTENCODING_CP437:
+ return OEM_CHARSET;
+
+ default:
+ // no way to translate this encoding into a Windows charset
+ return -1;
+ }
+}
+
+// we have 2 versions of wxCharsetToCodepage(): the old one which directly
+// looks up the vlaues in the registry and the new one which is more
+// politically correct and has more chances to work on other Windows versions
+// as well but the old version is still needed for !wxUSE_FONTMAP case
+#if wxUSE_FONTMAP
+
+#include "wx/fontmap.h"
+
+extern WXDLLIMPEXP_BASE long wxEncodingToCodepage(wxFontEncoding encoding)
+{
+ // translate encoding into the Windows CHARSET
+ long charset = wxEncodingToCharset(encoding);
+ if ( charset == -1 )
+ return -1;
+
+ // translate CHARSET to code page
+ CHARSETINFO csetInfo;
+ if ( !::TranslateCharsetInfo((DWORD *)(DWORD)charset,
+ &csetInfo,
+ TCI_SRCCHARSET) )
+ {
+ wxLogLastError(_T("TranslateCharsetInfo(TCI_SRCCHARSET)"));
+
+ return -1;
+ }
+
+ return csetInfo.ciACP;
+}
+
+extern long wxCharsetToCodepage(const wxChar *name)
+{
+ // first get the font encoding for this charset
+ if ( !name )
+ return -1;
+
+ wxFontEncoding enc = wxFontMapper::Get()->CharsetToEncoding(name, FALSE);
+ if ( enc == wxFONTENCODING_SYSTEM )
+ return -1;
+
+ // the use the helper function
+ return wxEncodingToCodepage(enc);
+}
+
+#else // !wxUSE_FONTMAP
+
+#include "wx/msw/registry.h"
+
+// this should work if Internet Exploiter is installed
+extern long wxCharsetToCodepage(const wxChar *name)
+{
+ if (!name)
+ return GetACP();
+
+ long CP = -1;
+
+ wxString path(wxT("MIME\\Database\\Charset\\"));
+ wxString cn(name);
+
+ // follow the alias loop
+ for ( ;; )
+ {
+ wxRegKey key(wxRegKey::HKCR, path + cn);
+
+ if (!key.Exists())
+ break;
+
+ // two cases: either there's an AliasForCharset string,
+ // or there are Codepage and InternetEncoding dwords.
+ // The InternetEncoding gives us the actual encoding,
+ // the Codepage just says which Windows character set to
+ // use when displaying the data.
+ if (key.HasValue(wxT("InternetEncoding")) &&
+ key.QueryValue(wxT("InternetEncoding"), &CP))
+ break;
+
+ // no encoding, see if it's an alias
+ if (!key.HasValue(wxT("AliasForCharset")) ||
+ !key.QueryValue(wxT("AliasForCharset"), cn))
+ break;
+ }
+
+ return CP;
+}
+
+#endif // wxUSE_FONTMAP/!wxUSE_FONTMAP