문자열 변환 [아스키 유니코드] ASCII <-> UNICODE
ASCII UNICODE wstring ATOW(string sStr); string WTOA(wstring wStr); //▷ASCII ==> UNICODE 변환방법 wstring CDownClientDlg::ATOW(string sStr) { BSTR bStr; int nLen = MultiByteToWideChar(CP_ACP, 0, sStr.c_str(), sStr.size(), NULL, NULL); bStr = SysAllocStringLen(NULL, nLen); MultiByteToWideChar(CP_ACP, 0, sStr.c_str(), sStr.size(), bStr, nLen); wstring wStr = bStr; SysFreeString(bStr); retur..
2014. 1. 31.