Stone.luo

Results 2 comments of Stone.luo

i added method below, and solve that problem. inline void WStrToUTF8(std::string& dest, const std::wstring& src){ dest.clear(); for (size_t i = 0; i < src.size(); i++){ wchar_t w = src[i]; if...