问题描述
- const CString 转换为char* 内容丢失
-
LPCTSTR lpszText = (LPCTSTR)sHostName;
struct hostent FAR *lpHostEnt = gethostbyname(LPSTR(lpszText));
if (lpHostEnt == NULL)
{
sIPAddress = _T("");
return WSAGetLastError();
}
解决方案
参考:http://blog.sina.com.cn/s/blog_58e19ae7010003jt.html
解决方案二:
CString 变量是unicode字符集吗,这种不能直接转换成char*
时间: 2025-01-21 15:28:07