做网站最新技术/网站设计师
Cstring转换成String/
#ifdef UNICODE
USES_CONVERSION;
str1 = W2A(cstr1);
str2 = W2A(cstr2);
#else
str1 = (LPCTSTR)cstr1;
str2 = (LPCTSTR)cstr2;
#endif
Cstring转换成String/
#ifdef UNICODE
USES_CONVERSION;
str1 = W2A(cstr1);
str2 = W2A(cstr2);
#else
str1 = (LPCTSTR)cstr1;
str2 = (LPCTSTR)cstr2;
#endif