1.头文件加入 /* 非MFC DLL中使用CString */ #define _AFXDLL #include <afx.h> 注意:要定义在 #include<windows.h>之前,否则会报错 2.cpp 文件里加入 /* 非MFC DLL中使用CString */ // The following symbol used to force inclusion of this module for _USRDLL #ifdef _X86_ extern "C" { int ...
CString虽然是MFC的类,不过其类结构是独立的,没有和其它主干类有关联或者派生关系,在不使用MFC的工程中完全可以单独声明使用。不推荐,是因为使用的代价比较大,需要链接静态类库或者加入代码文件,而VC操作字符串的方式非常多,没有必须使用CString的情况,也没有CString方便很多的情况,有人这样用,只是...
1.头文件加入 /* 非MFC DLL中使用CString */ #define _AFXDLL #include <afx.h> 注意:要定义在 #include<windows.h>之前,否则会报错 2.cpp 文件里加入 /* 非MFC DLL中使用CString */ // The following symbol used to force inclusion of this module for _USRDLL #ifdef _X86_ extern "C" { int ...