C++ - wchar_t 와 char 의 형변환
/////////////////////////////////////////////////////////////////////// //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; } ////////..
더보기