I have attempted to use winmm.dll to no avail, I have used several other projects Ive found like this well laid out tutorial but I haven't been able to get anything except for -1 returned for the getVolume method and nonsense values for other methods.
Is there a library I can use for this? Are there any more modern examples (this is from pre-2010)? I have looked into IAudioEndpointVolume interface, but it is not available through .NET and I'm not a c++ guy.
Any help much appreciated.
IAudioEndpointVolume
is avalable in Windows Core Audio APIs .Net wrapper.You can get whether master volume is muted or not by calling
int GetMute([Out] [MarshalAs(UnmanagedType.Bool)] out Boolean isMuted)
method:I have created simple realization of
GetMute
function (and all necessary interfaces abstractions from Windows CoreAudio API).AudioManager class code:
Usage:
Call
GetMasterVolumeMute()
method: