less.. 
WINBASEAPI 
 
WINBASEAPI 
 
 
void main() 
    MultiByteToWideChar( CP_ACP, 0, str, strlen(str)+1, wc, 8 );   // char 형 str 을 유니코드로  
    WideCharToMultiByte( CP_ACP, 0,  wc,  lstrlenW(wc), cTemp, 16 , 0, 0 );     
                                                                                            //  wc를 cTemp 로       printf (" cTemp : %s \n", cTemp);  
less.. less.. 
WideCharToMultiByte(형태로,0,바꿀문자열,바꿀문자열길이,새버퍼(out),새버퍼길이)
MultiByteToWideChar() 가 Double Byte Character Set 을 Unicode 로 바꿔줍니다.
--형태는,,MSDN에서 보덩가~
CP_ACP-ANCI로
ex)MultiByteToWideChar( CP_ACP, 0, str, strlen(str)+1, dbcs, 0x20 ); 
less..