ref: f759087b2470fc584b7373a9c1ad4a730f4c6c52
dir: /aux.h/
typedef enum {
Xclone,
Xctl,
Xmetadata,
Xdsp,
Xdspctl,
Xdspdata,
Xui,
Xuictl,
Xuimeta,
}Auxtype;
typedef struct Aux Aux;
typedef struct Auxdsp Auxdsp;
struct UI;
struct Aux {
Auxtype type;
int id;
int ctl;
int data;
int metadata;
Auxdsp *dsp;
struct UI *ui;
};