32static inline char *
wideToMulti(
unsigned int codePage,
const wchar_t *aw)
34 const int required = WideCharToMultiByte(codePage, 0, aw, -1,
nullptr, 0,
nullptr,
nullptr);
35 char *result =
new char[required];
36 WideCharToMultiByte(codePage, 0, aw, -1, result, required,
nullptr,
nullptr);
static int qtEntryPoint()
static char * wideToMulti(unsigned int codePage, const wchar_t *aw)