std::string转换到PVOID
std::string转换到PVOID的方式如下
这样的话成功转换
“const char *” 类型的实参与 “WCHAR *”
“const char *” 类型的实参与 “WCHAR *” 类型的形参不兼容
可以看到这种报错,可以直接强转如下:
但是在我们这里不适用,因为加了类型转换后,找不到相应pid了
那么我们修改方法传参为万能的LPCWSTR
这样就可以了
std::string转换到LPCWSTR
int hostLen = MultiByteToWideChar(CP_UTF8, 0, deurl.c_str(), -1, NULL, 0);
LPWSTR hostLPCWSTR = new WCHAR[hostLen];
MultiByteToWideChar(CP_UTF8, 0, deurl.c_str(), -1, hostLPCWSTR, hostLen);