shithub: neindaw

ref: 8b1426f03a09a3c4c99c3d12c194edd87fbccd93
dir: neindaw/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;
};