UNICODE下CString 和 const char* 的相互轉化

const char* 轉換爲 CString:html const char* c; c = "abcdef"; CString s; int len = strlen(c); TCHAR* c1 = (TCHAR*)malloc(sizeof(TCHAR)*len); MultiByteToWideChar( CP_ACP , 0 , c , len+1 , c1 , len+1); s.Fo
相關文章
相關標籤/搜索