The GetDigitalAudioInputDevice procedure allows the application software to obtain the device capabilities for the specified audio input device.

Namespace:  LanScape
Assembly:  LMEVoipManaged (in LMEVoipManaged.dll) Version: 6.0.5226.26700

Syntax

C#
public bool GetDigitalAudioInputDevice(
	int ZeroBasedDeviceIndex,
	VoipMediaEngine..::.LS_WAVEINCAPS WaveInCapabilities
)
Visual Basic (Declaration)
Public Function GetDigitalAudioInputDevice ( _
	ZeroBasedDeviceIndex As Integer, _
	WaveInCapabilities As VoipMediaEngine..::.LS_WAVEINCAPS _
) As Boolean
Visual C++
public:
bool GetDigitalAudioInputDevice(
	int ZeroBasedDeviceIndex, 
	VoipMediaEngine..::.LS_WAVEINCAPS^ WaveInCapabilities
)
J#
public boolean GetDigitalAudioInputDevice(
	int ZeroBasedDeviceIndex,
	VoipMediaEngine..::.LS_WAVEINCAPS WaveInCapabilities
)

Parameters

ZeroBasedDeviceIndex
Type: System..::.Int32
The zero based index of the audio output device.
WaveInCapabilities
Type: LanScape..::.VoipMediaEngine..::.LS_WAVEINCAPS
A reference to a user supplied wave in capability class variable.

Return Value

If the function succeeds, the return value will be non zero and the wave in caps structure will contain information for the input device.

If the function fails, the return value will be zero.

Remarks

None.

See Also