我正在使用 XAudio2 运行 SteamWorksExample 游戏,以查看如何在基于 C++ 的游戏中包含 Steam 内容,我使用的是 Windows 10,但是当我运行代码时,出现此错误:
“此版本的 XAudio2 仅在 Windows 8 或更高版本中可用。将 DirectX SDK 中的 XAudio2 标头和库与面向 Windows 7 和更早版本的应用程序一起使用。”
我检查了源文件,它在那里:
#if(_WIN32_WINNT < _WIN32_WINNT_WIN8) #error "This version of XAudio2 is available only in Windows 8 or later. Use the XAudio2 headers and libraries from the DirectX SDK with applications that target Windows 7 and earlier versions." #endif // (_WIN32_WINNT < _WIN32_WINNT_WIN8)
我该如何解决这个错误?