string與CString互轉

std::string CString2string(CString input) { #ifdef UNICODE     int len = WideCharToMultiByte(CP_ACP, 0, LPCWSTR(input), -1, NULL, 0, NULL, NULL);     char *str = new char[len];     memset(str, 0, len)
相關文章
相關標籤/搜索