Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents  
 
MixerGetWaveVolume method 
 
Remarks 
 
Retrieves the wave volume for the given mixer. Wave volume is not supported by Windows Vista. 
 
The returned volume can be modified using the MixerSetWaveVolume method. 
 
The number of mixers currently installed on the system can be retrieved using the MixerGetCount method. A friendly description of the mixer can be retrieved using the MixerGetDesc method.  
 
 
Syntax 
 
[Visual Basic] 
Public Function MixerGetWaveVolume
nIndex as Int16 
) as Int16
 
[C#] 
public Int16 MixerGetWaveVolume
Int16 nIndex 
);
 
[C++] 
public: Int16 MixerGetWaveVolume
Int16 nIndex 
);
 
Parameter
Description
 
 
nIndex
Number representing the zero-based index of the mixer whose wave volume must be retrieved
 
 
Return value 
 
Value
Meaning
 
 
-1
An error occurred (see the LastError property for further error details)
>= 0
The current wave volume in the range from 0 to 100
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2005-2008 MultiMedia Soft 
Return to Table of contents