+ wxString Convert(const wxString& input);
+
+#if wxUSE_UNICODE // otherwise wxChar === char
+ void Convert(const char* input, wxChar* output);
+ void Convert(const wxChar* input, char* output);
+ void Convert(const char* input, char* output);
+ void Convert(char* str) { Convert(str, str); }
+#endif