Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

Search Results for "waveOutGetVolume" in [All]

winmm

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

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

.

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

.

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

.
Documentation
[waveOutGetVolume] on MSDN

coredll

.

protected static extern int waveOutGetVolume(IntPtr device, ref uint volume);

.

Declare Function waveOutGetVolume Lib "coredll.dll" (ByVal uDeviceID As Integer, ByRef lpdwVolume As Integer) As Integer

.

waveOutGetVolume(IntPtr.Zero, ref ret);

.

internal static extern int waveOutGetVolume(IntPtr device, ref int volume);

.

    waveOutGetVolume(IntPtr.Zero, ref v);

.
Documentation
[waveOutGetVolume] on MSDN
.

internal static extern int waveOutGetVolume(IntPtr device, ref int volume);

.

    waveOutGetVolume(IntPtr.Zero, ref v);


 
Access PInvoke.net directly from VS: