BassPluginStreamCreateFunc method |
|
Remarks
Imports a specific function for creating a playback stream of type HSTREAM from a BASS plugin implementing the decoding of an audio format not already covered by the multimedia engine.
Audio formats not included inside the multimedia engine but implemented inside existing BASS plugins are the following:
• | OptimFrog through the Bass_OFR.dll plugin |
• | TTA through the Bass_TTA.dll plugin |
• | ADX through the Bass_ADX.dll plugin |
• | AIX through the Bass_AIX.dll plugin |
Other formats may be added in the future. Check the www.un4seen.com website for downloading the mentioned plugins or for checking the availability of new ones.
For further details about accessing BASS and its plugins directly from your code you can refer to the tutorial How to access BASS library functionalities directly.
Syntax
[Visual Basic] Public Function BassPluginStreamCreateFunc ( strPluginPathname as string, strFuncName as string, nType as enumBassPluginStreamCreateFuncs ) as enumErrorCodes |
[C#] public enumErrorCodes BassPluginStreamCreateFunc ( string strPluginPathname, string strFuncName, enumBassPluginStreamCreateFuncs nType ); |
[C++] public: enumErrorCodes BassPluginStreamCreateFunc ( string strPluginPathname, string strFuncName, enumBassPluginStreamCreateFuncs nType
); |
Parameter |
Description |
|||||||||
|
|
|||||||||
strPluginPathname |
String containing the absolute or relative pathname of the BASS plugin. For example "Bass_AIX.dll". If the string specifies a full path, the function searches only that path for the module. If the string specifies a relative path or a module name without a path, the function uses the standard search strategy adopted by the LoadLibraryEx Windows API to find the module. |
|||||||||
strFuncName |
String containing the exact name of the function to import. For example "BASS_AIX_StreamCreateFile" or "BASS_AIX_StreamCreateURL". |
|||||||||
nType |
Type of function. Supported values are the following:
|
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. |