摘要: 1 // CStringTest.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include 6 #include 7 #include 8 9 using namespace std;10 11 static std::string U2A(CString cstring)12 {13 if (::IsBadStringPtr(cstring,-1))14 return "";15 16 int cchStr = ::WideCharToMultiByte(CP_ACP, 0, cst... 阅读全文
posted @ 2014-03-25 11:32 言止予思 阅读(337) 评论(0) 推荐(0) 编辑