Remarks
Re-initialises the control after a reset of the multimedia engine: the call to this method is mandatory after a call to the ResetEngine method. The purpose of this method is mostly identical to the InitRecordingSystem method.
Syntax
[Visual Basic]
Public Function ResetControl (
nInputDevice as Int16,
nInputChannel as Int16
) As enumErrorCodes
|
|
[C#]
public enumErrorCodes ResetControl (
Int16 nInputDevice,
Int16 nInputChannel
);
|
|
[C++]
public: enumErrorCodes ResetControl (
Int16 nInputDevice,
Int16 nInputChannel
);
|
|
Parameter
|
Description
|
|
|
nInputDevice
|
Ignored, set it to 0.
|
nInputChannel
|
Ignored, set it to 0.
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful.
|
|