shithub: neindaw

ref: 3922b88bda427a03486ce01fc9a11739a570b545
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;
};