728x90
반응형
멀티바이트를 유니코드로 변환하는 방법
void CStringToWideChar(CString cstr, wchar_t* pwchar, int size)
{
int cstrLen = cstr.GetLength();
ASSERT( cstrLen < MAX_LENGTH );
MultiByteToWideChar(CP_ACP, MB_PRECOMPOSED,
cstr.GetBuffer(cstrLen), cstrLen, pwchar, size);
cstr.ReleaseBuffer();
}
728x90
반응형
'프로그래밍 > MFC' 카테고리의 다른 글
MFC 비트맵 이미지 (0) | 2020.11.02 |
---|---|
MFC 그리기 모드 (0) | 2020.11.02 |
MFC 현재 사용중인 IP 가져오기 (0) | 2020.11.02 |
MFC 유니코드 ASCII 변환 (0) | 2020.11.02 |
MFC 타입 변환(Hex to ASCII) (0) | 2020.11.02 |