Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
CustomDSP.Free method 
 
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 CustomDSPs class. 
 
 
Syntax 
 
[Visual Basic] 
Public Function Free
nIdDsp as Int32 
 
[C#] 
public enumErrorCodes Free
Int32 nIdDsp 
);
 
[C++] 
public: enumErrorCodes Free
Int32 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.NOERROR (0)
The method call was successful.
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents