waveOutGetVolume (winmm)
Last changed: -92.116.124.216

.
Summary
The waveOutGetVolume function retrieves the current volume level of the specified waveform-audio output device.

C# Signature:

[DllImport("winmm.dll", SetLastError = true, CharSet = CharSet.Auto)]

public static extern uint waveOutGetVolume(IntPtr hwo, uint dwVolume);

VB Signature:

Declare Function waveOutGetVolume Lib "winmm.dll" (ByVal hwo As IntPtr, ByRef dwVolume As UInteger) As Integer

User-Defined Types:

None.

Alternative Managed API:

[DllImport("winmm.dll")]

public static extern int waveOutGetVolume(IntPtr hwo, out uint dwVolume);

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation