error C1189: #error : MFC does not support

请使用当前新版的vs并输入书中改动的代码就Ok,因为vs会生成合理的mfc代码,养成好的习惯,,
 

一开始编译,第一个错误提示

 

  1. Building an MFC project for non-Unicode character set is deprecated  

 

首先参考这篇博客Building an MFC project for a non-Unicode character set is deprecated

安装   Multibyte MFC Library for Visual Studio 2013


然后编译,遇到这个问题

 

  1. warning C4996: 'MBCS_Support_Deprecated_In_MFC': MBCS support in MFC is deprecated and may be removed in future version of MFC.  


 

参考这个提问  Error preprocessor directives when building

在vs2013中上面这个 

 

  1. warning C4996:'MBCS_Support....   


 

双击会指向这个代码段

  1. #ifdef _MBCS  
  2. // Warn about MBCS support being deprecated: see http://go.microsoft.com/fwlink/p/?LinkId=279048 for more information.  
  3. #pragma warning(push)  
  4. #pragma warning(1 4996)  



就是这个链接http://go.microsoft.com/fwlink/p/?LinkId=279048文中提到可以通过将 NO_WARN_MBCS_MFC_DEPRECATION 预处理器定义添加到您的项目生成定义消除此警告。在项目stdafx.h文件中的#pragma once下面添加
  1. #define NO_WARN_MBCS_MFC_DEPRECATION  


然后开始解决下面的问题
  1. error C1189: #error MFC does not support WINVER less than 0x0501. Please change the definition of WINVER in your project properties or precompiled header.  

 

将stdafx.h文件中的

  1. #define WINVER 0x0400  
  2. 改为  
  3. #define WINVER 0x0501  
  4.    
  5. #define _WIN32_WINNT 0x0400  


改为
  1. #define _WIN32_WINNT 0x0501  
OK,然后是在vs2013中最后一个问题了错误 2 error CVT1100: 资源重复。类型: MANIFEST打开 项目属性 -> 配置属性 ->链接器 -> 清单文件 -> 生成清单 -> 选择否
everything is OK!
 
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值