【Visual Studio】MFC does not support WINVER less than 0x0501 解决方案(转)
时间:2017-11-28 18:42:44
收藏:0
阅读:2702
原文转自 http://blog.csdn.net/ygzhong000/article/details/41750841
解决方案:在stdafx.h头文件中添加以下行。
#define WINVER 0x0602 #define _WIN32_WINNT 0x0602
评论(0)