Class FMOD_DSP_PARAMETER_DESC

All Implemented Interfaces:
AutoCloseable, NativeResource, Pointer

public class FMOD_DSP_PARAMETER_DESC extends Struct<FMOD_DSP_PARAMETER_DESC> implements NativeResource
struct FMOD_DSP_PARAMETER_DESC {
    FMOD_DSP_PARAMETER_TYPE type;
    char name[16];
    char label[16];
    char const * description;
    union {
        FMOD_DSP_PARAMETER_DESC_FLOAT floatdesc;
        FMOD_DSP_PARAMETER_DESC_INT intdesc;
        FMOD_DSP_PARAMETER_DESC_BOOL booldesc;
        FMOD_DSP_PARAMETER_DESC_DATA datadesc;
    };
}