|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function Enable (
nIdDsp as Int32,
bEnable as Boolean,
nUserData as Int32,
nPriority as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes Enable (
Int32 nIdDsp,
bool bEnable,
Int32 nUserData,
Int32 nPriority
);
|
|
[C++]
public: enumErrorCodes Enable (
Int32 nIdDsp,
bool bEnable,
Int32 nUserData,
Int32 nPriority
);
|
|
Parameter
|
Description
| ||||||
|
|
| ||||||
|
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
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|