I am trying to call Windows Core Audio from C#. I understand I can use NAudio and NetCoreAudio.
However I wanted to get or generate a type library for the Windows Core Audio libraries AudioSes.dll and MMDeviceApi.dll and import it into my project
I have tried Tlbexp, TlbImp and RegAsm. The dlls do not seem to contain the type information. If it is not in theses dlls where can I find it.
Any ideas?
Any help will be appreciated.
There is no type library to hold information about MMDevice API interfaces. Native code apps use Windows SDK headers which define these interfaces, and C# apps will have to have their own private code definitions, such as those in NAudio source, IAudioClient.cs: