警告报告:
_WIN32_WINNT not defined. Defaulting to _WIN32_WINNT_MAXVER (see WinSDKVer.h
处理办法:
在StdAfx.h头文件里面加上#include <SDKDDKVer.h>有关于平台的定义
//Including SDKDDKVer.h defines the highest available Windows platform.
//If you wish to build your application for a previous Windows platform, include WinSDKVer.h and
//set the _WIN32_WINNT macro to the platform you wish to support before including SDKDDKVer.h.
本文详细解释了如何解决WIN32_WINNT未定义导致的警告报告,通过在StdAfx.h头文件中包含SDKDDKVer.h来解决此问题。包括设置WIN32_WINNT宏以构建适用于特定Windows平台的应用程序。
6183

被折叠的 条评论
为什么被折叠?



