what is SDKDDKVer.h for?(SDKDDKVer.h 有什么用?)
问题描述
所有用 MSVC 创建的项目都有 stdafx,它是预编译的头文件,我知道它们是什么,但是 targetver.h 呢?它包括 SDKDDKVer.h,我找不到那个标题是什么.
All project created with MSVC have stdafx, which is precompiled headers, which I know what they are but what about targetver.h ? It includes SDKDDKVer.h, and I can't find what is that header about.
这是干什么用的?
推荐答案
targetver.h
和 SDKDDKVer.h
用于控制哪些函数、常量等是根据您希望程序支持的操作系统,从 Windows 头文件包含到您的代码中.我相信 targetver.h
将默认设置为使用最新版本的 Windows,除非在其他地方指定了定义.
targetver.h
and SDKDDKVer.h
are used to control what functions, constants, etc. are included into your code from the Windows headers, based on the OS that you want your program to support. I believe that targetver.h
sets defaults to using the latest version of Windows unless the defines are specified elsewhere.
SDKDDKVer.h
是头文件,实际定义了#defines
,代表Windows、IE等各个版本
SDKDDKVer.h
is the header file that actually defines the #defines
that represent each version of Windows, IE, etc.
这篇关于SDKDDKVer.h 有什么用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:SDKDDKVer.h 有什么用?


基础教程推荐
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01