Sharondohp Sharonas
Sharondohp Sharonas

Reputation: 277

Where can i download the Windows Core Audio Library ? (dll file/s)

I saw the link for this api in some other answers:

Windows Core Audio Library

But i can't find there where/how to download the api.

Upvotes: 0

Views: 3769

Answers (1)

torvin
torvin

Reputation: 7101

Core Audio is a part of Windows OS since Vista. So you don't need to download it. It either already exists in your system (if you have Vista or higher) or is not supported.

If you need header files to write your program against them - download latest Windows SDK from Microsoft's website, it should contain everything that is required to use this API.

Also, MSDN contains info on which header file from SDK you should include to use any particular API. E.g.: https://msdn.microsoft.com/en-us/library/windows/desktop/dd371395%28v=vs.85%29.aspx (see Requirements section).

If you need to use Core Audio from C# (as your tags suggest), you should either create a COM-wrapper yourself, or use someone else's.

Upvotes: 4

Related Questions