|
Copyright © 2006 - 2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function ExternalSetFunction (
nIdDsp as Int32,
nFunctionType as enumDspExternalFunctions,
strFunctionName as string
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes ExternalSetFunction (
Int32 nIdDsp,
enumDspExternalFunctions nFunctionType,
string strFunctionName
);
|
|
[C++]
public: enumErrorCodes ExternalSetFunction (
Int32 nIdDsp,
enumDspExternalFunctions nFunctionType,
string strFunctionName
);
|
|
Parameter
|
Description
| |||||||||||||||||||||||||||
|
|
| |||||||||||||||||||||||||||
|
nIdDsp
|
Unique identifier of the custom DSP
| |||||||||||||||||||||||||||
|
nFunctionType
|
Type of function to set.
Supported values are the following:
| |||||||||||||||||||||||||||
|
strFunctionName
|
Name of the function exported by the dynamic-link library (DLL)
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|