Remarks
Removes the given audio stream's clone previously added through the StreamCloneAdd method.
Syntax
[Visual Basic]
control.StreamCloneRemove (
nPlayer as Integer,
nUniqueId as Long
) as enumErrorCodes
|
|
[C++]
short control.StreamCloneRemove (
short nPlayer,
long nUniqueId
);
|
|
Parameter
|
Description
|
|
|
nPlayer
|
Number representing the zero-based index of the involved player
|
nUniqueId
|
Numeric value representing the unique identifier of the audio stream's clone returned by the StreamCloneAdd method
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to get the error code
|
enumErrorCodes.ERR_NOERROR (0)
|
The method call was successful
|
|