Firelight Technologies FMOD Studio API
FMOD_ERRORCALLBACK_INFO
Structure that is passed into FMOD_SYSTEM_CALLBACK for the FMOD_SYSTEM_CALLBACK_ERROR callback type.
C/C++ Syntax
typedef struct {
FMOD_RESULT result;
FMOD_ERRORCALLBACK_INSTANCETYPE instancetype;
void *instance;
const char *functionname;
const char *functionparams;
} FMOD_ERRORCALLBACK_INFO;
JavaScript Syntax
struct FMOD_ERRORCALLBACK_INFO
{
result,
instancetype,
instance,
functionname,
functionparams,
};
Members
result
Error code result
instancetype
Type of instance the error occurred on
instance
Instance pointer
functionname
Function that the error occurred on
functionparams
Function parameters that the error ocurred on
Remarks
The instance pointer will be a type corresponding to the instanceType enum.
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.ERRORCALLBACK_INFO()", no 'new' keyword is required.
See Also
Version 1.10.03 Built on Feb 1, 2018