本文主要是介绍89: #error: MFC does not support WINVER less than 0x0501. Please change the definition of WINV,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在win10上使用vs2017编译之前的程序报错,解决方法如下:
参考https://blog.csdn.net/ygzhong000/article/details/41750841
请在stdafx.h头文件中添加以下行。
#define WINVER 0x0602
#define _WIN32_WINNT 0x0602
这篇关于89: #error: MFC does not support WINVER less than 0x0501. Please change the definition of WINV的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!