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 有什么用?
基础教程推荐
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01