我需要转换Unicode版本的ReadDirectoryChangesW来支持多字节是可能的
答案 0 :(得分:-1)
您可以使用此简单方法将多字节字符串转换为unicode字符串
#include <string>
#include <sstream>
template <typename inputtype>
std::wstring toUTF16String(const inputtype& input)
{
std::wstringstream ss;
ss << input;
return ss.str();
}
然后,您可以在unicode函数中使用此获取的值。