OS/Windows
bstr to cstring
라퀴옹
2011. 4. 12. 15:45
BSTR sUrl;
CHAR* pbstr;
CHAR* pbstr;
USES_CONVERSION; //convert를 위한 매크로
pbstr=OLE2A(sUrl); //bstr을 char로 convert
CString s(pbstr);
AfxMessageBox(s);