ATL String Conversion Macros 식의 UTF-8 변환으로 Windows 에서만 동작함
출처 : http://kilojuliet.tistory.com/36
수정)
nothrow 삭제
ASSERT 관련 헤더 및 define 추가
사용 예)
UTF8_CONVERSION_EX;
wstring wstr = L"안녕하세요";
string utf8 = W2UTF8_EX(wstr.c_str());
wstring wstr2 = UTF82W_EX(utf8.c_str());
wcout << wstr2 << endl;
'C++' 카테고리의 다른 글
OTL 샘플 (0) | 2012.04.06 |
---|---|
현재 자신이 서비스 모드로 실행되었는지 콘솔모드로 실행되었는지 확인하는 방법 (0) | 2012.04.05 |
strsafe.h (0) | 2012.03.24 |
openssl + AES256 + Base64 (0) | 2012.03.11 |
#pragma message 를 활용한 할일 적어두기 (0) | 2012.03.07 |
메모리 릭 확인 - Detected memory leaks (0) | 2012.02.27 |
오픈소스 라이센스 : libcurl, openSSL, wxWidgets (0) | 2012.02.26 |
Mutex로 중복실행 방지 (0) | 2012.02.24 |