侧边栏壁纸
博主头像
我的学习和日常生活记录

行动起来,活在当下

  • 累计撰写 86 篇文章
  • 累计创建 49 个标签
  • 累计收到 5 条评论

目 录CONTENT

文章目录

WTL 与 ATL CString 冲突解决

Administrator
2020-06-04 / 0 评论 / 0 点赞 / 1726 阅读 / 0 字

修改stdafx.h预编译头文件

#include <atlbase.h>
#include <atlstr.h>
#include <atlapp.h>
extern CAppModule _Module;
#define _WTL_NO_CSTRING
#include <atlwin.h>
#include <atlcrack.h>
#include <atlframe.h>
#include <atlctrls.h>
#include <atldlgs.h>
#include <atlwin.h>

0

评论区