shithub: neindaw

ref: db328d440497a5d2b0292b55f9ceb77e5eb9a0e8
dir: /aux.h/

View raw version
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;
};