Я хочу разработать низкоуровневый аудио API, который, как я могу ожидать, уже будет в Windows 7.
Эта ссылка: Версии XAudio2
говорит (курсив мой)
XAudio2 is a cross-platform API that has shipped for use on Xbox 360 as well as versions of Windows, including Windows XP, Windows Vista, Windows 7
Но также сказано:
XAudio 2.7 and earlier (Windows 7)
All previous versions of XAudio2 for use in apps have been provided as redistributable DLLs in the DirectX SDK.
Так что это? Используется ли он по умолчанию в Windows 7 или мне нужно распространять DirectX с моим установщиком? Или, поскольку Windows 7, по-видимому, включает DirectX 11, хотя я не нашел официального источника этой информации, возможно, мне просто нужно разработать против устаревшего DirectX API, но мне не нужно будет включать его распространяемые?





На это уже ответила остальная часть страницы MSDN:
XAudio2 version 2.9 ships as part of Windows 10, XAUDIO2_9.DLL, alongside XAudio2.8 to support older applications, and does not require redistribution.
XAudio2 version 2.8 ships today as a system component in Windows 8, XAUDIO2_8.DLL. It is available “inbox” and does not require redistribution with an app. We recommend to use the Windows Software Development Kit (SDK) for Windows 8 to develop against XAudio2; the Windows SDK for Windows 8 contains the necessary header and import library for statically linking against XAUDIO2_8.DLL.
All previous versions of XAudio2 for use in apps have been provided as redistributable DLLs in the DirectX SDK. The first version of XAudio2, XAudio2 2.0, shipped in the March 2008 release of the DirectX SDK. The last version to ship in the DirectX SDK was XAudio2 2.7, available in the last release of the DirectX SDK in June 2010.
TL; DR: XAudio не входит в состав Windows 7. XAudio 2.7 - последняя версия, поддерживающая Windows 7. Для использования XAudio 2.7 требуется устаревший DirectX SDK и устаревший пакет DirectSetup End-User Runtime Redist.
См. XAudio2 и Windows 8, Пакет SDK для Zombie DirectX и Не очень прямая установка
Обновлено: Теперь есть возможность использовать последнюю версию XAudio 2.9 в Windows 7. См. Документы Microsoft.
Прочтите Не очень прямая установка.
Значит, XAudio не включен в версию DirectX, которая включена в Windows 7?