如何在 Visual Studio 2017 中为 Windows XP 编译代码

How to compile code for Windows XP in Visual Studio 2017

我试图在 Visual Studio 2017 年 Windows 10 上为 Windows XP 编译一个基本的 hello world 程序。但是它给出了一些错误,如图所示。

关于这个问题,我已经尝试了其他 Stack Overflow 帖子中提到的步骤,并更改了平台工具 "Visual Studio 2017 - Windows XP (v141_xp)"。

#include<iostream>
using namespace std;
int main() {
    cout << "Hello world\n";
}
1>------ Build started: Project: WindowsProject1, Configuration: Debug Win32 ------
1>C:\Program Files (x86)\Microsoft Visual Studio17\Community\Common7\IDE\VC\VCTargets\Platforms\Win32\PlatformToolsets\v141_xp\Toolset.targets(39,5): warning MSB8051: Support for targeting Windows XP is deprecated and will not be present in future releases of Visual Studio. Please see https://go.microsoft.com/fwlink/?linkid=2023588 for more information.
1>stdafx.cpp
1>c:\program files (x86)\microsoft sdks\windows\v7.1a\include\objbase.h(239): error C2760: syntax error: unexpected token 'identifier', expected 'type specifier'
1>c:\program files (x86)\microsoft sdks\windows\v7.1a\include\gdiplusheaders.h(891): error C4596: 'EmfToWmfBits': illegal qualified name in member declaration
1>c:\program files (x86)\microsoft sdks\windows\v7.1a\include\gdiplusstringformat.h(220): error C4596: 'GetTrimming': illegal qualified name in member declaration
1>Done building project "WindowsProject1.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

您在这里遇到的是 XP 兼容 SDK 的头文件中的问题。这个问题实际上很神秘,但幸运的是,相对容易处理:你只需要 'relax' 编译器使用的一致性检查的严格性...

为此,请在 解决方案资源管理器 和 select "Properties." 调用的 属性 页面上右键单击您的项目、select "C/C++" 选项卡,然后是 "Language" 子选项卡。在随后显示的页面中,确保您 select "Conformance Mode" 为“No”。这应该可以解决问题。

随时要求进一步澄清and/or解释。

你没有说你开始使用什么模板,但我怀疑你启用了一致性模式 (/permissive-)。转到项目 -> 属性 -> C/C++ -> 语言并将一致性模式设置为 "No".

用于支持 Windows XP 的旧 Windows 7.1a SDK 从未更新为符合 /permissive-