让WTL支持CString和CRect,CPoint等类(转)

// 在Stdafx.h 中加入下面四句,像这个样子
#define _WTL_NO_CSTRING
#define _WTL_NO_WTYPES
#include <atlstr.h>
#include <atltypes.h>

#include <atlbase.h>
#include <atlapp.h>

extern CAppModule _Module;

#include <atlwin.h>

参考:http://blog.csdn.net/yjz1409276/article/details/14080867

PS:上面代码用来解决下面的编译错误

e:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\atltypes.h(55) : error C2872: “CPoint” : 不明确的符号
        可能是“e:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\atltypes.h(20) : CPoint”
        或      “e:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\include\wtl\WTL80\include\atlmisc.h(182) : WTL::CPoint”


你可能感兴趣的:(让WTL支持CString和CRect,CPoint等类(转))