mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-24 08:34:08 +00:00
20 lines
346 B
C++
20 lines
346 B
C++
#ifdef __WIN32
|
|
|
|
#include "wstring.hh"
|
|
#include "iconv.hh"
|
|
#include <wchar.h>
|
|
#include <QString>
|
|
|
|
namespace gd
|
|
{
|
|
wstring __nativeToWs( wchar_t const * str )
|
|
{
|
|
QString qStr=QString::fromWCharArray(str);
|
|
return qStr.toStdU32String();
|
|
//return Iconv::toWstring( "WCHAR_T", str, wcslen( str ) * sizeof( wchar_t ) );
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|