Remarks
Discards from memory a previously loaded custom DSP.
For further details about managing a custom DSP effect refer to the How to manage custom DSP effects section.
For further details about methods related to the use of custom DSP effects refer to the CustomDSP COM object.
Syntax
[Visual Basic]
control.CustomDSP.Free (
nIdDsp as Long
) as enumErrorCodes
|
|
[C++]
short control.CustomDSP.Free (
long nIdDsp
);
|
|
Parameter
|
Description
|
|
|
nIdDsp
|
Unique identifier of the custom DSP to discard from memory. Passing -1 will cause discarding from memory all of the loaded custom DSPs.
|
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.
|
|