CString 转成 char*

CString strSend;
 GetDlgItemText(IDC_EDIT_SEND,strSend);
 USES_CONVERSION;
 char* chs = T2A(strSend);

你可能感兴趣的:(CString 转成 char*)