How would I go about changing the sound volume in c++ win32? Also how would I mute/unmute it? Thanks for the help!
|
1
|
|||
|
|
|
Two options:
|
|||
|
|
|
|
waveOutSetVolume and mixerSetControlDetails only change the volume for your application on Windows Vista and above. If you want to change the master volume on Vista and beyond, search for the IAudioEndpointVolume interface. Here's a blog post I wrote on this a couple of years ago. |
||||
|
|
|
Maybe you should consider to NOT change the global volume. Think about it - if I lower the volume in MediaPlayer all other programs are still as loud as before, and that is exactly what I expect from any program - to only lower it's OWN volume. Of course there might be reasons to change global volume, no offense ;) |
||
|
|
|
|
Use the Here's an example:
|
|||
|
|
