摘要: #pragma once #include <string> #include <Windows.h> using namespace std; #define SAFE_DELETE_ARRAY(p)\ if (p != NULL)\ {\ delete [] p;\ p = NULL;\ }\namespace utility { string unicode_2_ansi(const wchar_t *p_in) { int nLen = WideCharToMultiByte(CP_OEMCP, 0, p_in, -1, NULL, 0, NULL, FA... 阅读全文
posted @ 2013-05-28 15:45 执迷不悟~ 阅读(288) 评论(0) 推荐(0)