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 {
         {@link FMOD_DSP_PARAMETER_DESC_FLOAT FMOD_DSP_PARAMETER_DESC_FLOAT} floatdesc;
         {@link FMOD_DSP_PARAMETER_DESC_INT FMOD_DSP_PARAMETER_DESC_INT} intdesc;
         {@link FMOD_DSP_PARAMETER_DESC_BOOL FMOD_DSP_PARAMETER_DESC_BOOL} booldesc;
         {@link FMOD_DSP_PARAMETER_DESC_DATA FMOD_DSP_PARAMETER_DESC_DATA} datadesc;
     };
 }