|
Copyright © 2001-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
control.CustomDSP.Enable (
nPlayer as Integer,
nIdDsp as Long,
bEnable as enumBoolean,
nUserData as Long,
nPriority as Long
) as enumErrorCodes
|
|
[C++]
short control.CustomDSP.Enable (
short nPlayer,
long nIdDsp,
short bEnable,
long nUserData,
long nPriority
);
|
|
Parameter
|
Description
| ||||||
|
|
| ||||||
|
nPlayer
|
Number representing the zero-based index of the involved player
| ||||||
|
nIdDsp
|
Unique identifier of the custom DSP
| ||||||
|
bEnable
|
Boolean flag that tells if the custom DSP must be enabled or disabled.
Supported values are the following:
| ||||||
|
nUserData
|
User data to pass to the custom DSP
| ||||||
|
nPriority
|
DSP priority level: DSP with higher priority are applied before DSP with lower priority
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|