2023年9月22日
摘要: wchar_t* charToWchar(const char* src) { size_t size = strlen(src) + 1; wchar_t* dest = new wchar_t[size]; size_t outSize; mbstowcs_s(&outSize, dest, s 阅读全文
posted @ 2023-09-22 11:01 laremehpe 阅读(27) 评论(0) 推荐(0) 编辑