Firelight Technologies FMOD Studio API
FMOD_PLUGINLIST
Used to support lists of plugins within the one file.
C/C++ Syntax
typedef struct {
FMOD_PLUGINTYPE type;
void* description;
} FMOD_PLUGINLIST;
JavaScript Syntax
struct FMOD_PLUGINLIST
{
type,
description,
};
Members
type
The plugin type
description
One of FMOD_DSP_DESCRIPTION, FMOD_OUTPUT_DESCRIPTION, FMOD_CODEC_DESCRIPTION
Remarks
The description field is either a pointer to FMOD_DSP_DESCRIPTION, FMOD_OUTPUT_DESCRIPTION, FMOD_CODEC_DESCRIPTION.
This structure is returned from a plugin as a pointer to a list where the last entry has FMOD_PLUGINTYPE_MAX and a null description pointer.
JavaScript only :
Not all fields are currently supported or may not work as expected at this time. To initialize an new instance in javascript use "FMOD.PLUGINLIST()", no 'new' keyword is required.
See Also
Version 1.10.03 Built on Feb 1, 2018