summaryrefslogtreecommitdiffstats
path: root/libao2/audio_plugin_internal.h
blob: 9c777726e4848f088b27eb11e5600f079ad6a2a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// prototypes:
static int control(int cmd,int arg);
static int init();
static void uninit();
static void reset();
static int play();

#define LIBAO_PLUGIN_EXTERN(x) ao_plugin_functions_t audio_plugin_##x =\
{\
	&info,\
	control,\
	init,\
        uninit,\
	reset,\
	play,\
};