zoukankan      html  css  js  c++  java
  • Your version of the Windows SDK is earlier than 6.0 Try setting the 'WINVER' and '_WIN32_WINNT' defi

    Your version of the Windows SDK is earlier than 6.0 Try setting the 'WINVER' and '_WIN32_WINNT' definitions in your project to less than 0x0600 解决方法 (资料收集)

    ////////////////////////////////////////////////////////////////////////////////////////////////////////////

    //在stdafx.h中的最前面添加

    ////////////////////////////////////////////////////////////////////////////////////////////////////////////

    #ifndef WINVER     // Specifies that the minimum required platform is Windows Vista.

    #define WINVER 0x0500   // Win2k

    #endif

    #ifndef _WIN32_WINNT   // Specifies that the minimum required platform is Windows Vista.

    #define _WIN32_WINNT 0x0500  // Win2k

    #endif

  • 相关阅读:
    ARTS第十一周
    ARTS第十周
    ARTS第九周
    一.Java技术现象
    ARTS第八周
    2019书单
    10.枚举的使用
    9.文件输入与输出
    软件模块化设计
    8.String API
  • 原文地址:https://www.cnblogs.com/blueswitkey/p/2877706.html
Copyright © 2011-2022 走看看