※ 함수의 반환값을 받은 후, delete[] 해준다.
wchar_t -> char
char * ConvertWCtoC(wchar_t* str)
{
//반환할 char* 변수 선언
char* pStr ;
//입력받은 wchar_t 변수의 길이를 구함
int strSize = WideCharToMultiByte(CP_ACP, 0,str,-1, NULL, 0,NULL, NULL);
//char* 메모리 할당
pStr = new char[strSize];
//형 변환
WideCharToMultiByte(CP_ACP, 0, str, -1, pStr, strSize, 0,0);
return pStr;
}
char -> wchar_t
wchar_t* ConverCtoWC(char* str)
{
//wchar_t형 변수 선언
wchar_t* pStr;
//멀티 바이트 크기 계산 길이 반환
int strSize = MultiByteToWideChar(CP_ACP, 0,str, -1, NULL, NULL);
//wchar_t 메모리 할당
pStr = new WCHAR[strSize];
//형 변환
MultiByteToWideChar(CP_ACP, 0,str, strlen(str)+1, pStr, strSize);
return pStr;
}
'C/C++' 카테고리의 다른 글
Windows Data Type (0) | 2015.03.18 |
---|---|
[스크랩] C언어 가변인자(가변파라미터)를 사용해보자 (0) | 2014.06.11 |
[C++]OpenGL, OpenCV를 이용하여, PNG파일 불러오기(초간단) (0) | 2013.04.29 |
[C언어] 문자열 치환함수 (0) | 2012.04.27 |
포인터 (0) | 2012.03.28 |