标签:
VS2010中编程时遇到这个问题
_WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h)
解决办法:
在stdafx.h中添加宏定义
#define _WIN32_WINNT 0x0502
备注:必须在stdafx.h中所有#include 文件之前添加此代码。
VS2010中遇到_WIN32_WINNT not defined
标签:
原文地址:http://www.cnblogs.com/huhu0013/p/4554785.html