comparison libao2/audio_plugin_internal.h @ 3096:15abd9121737

ao_plugin.c and plugin headers added
author anders
date Sat, 24 Nov 2001 05:24:06 +0000
parents
children ef2287ccc42b
comparison
equal deleted inserted replaced
3095:981a9e5118ce 3096:15abd9121737
1 // prototypes:
2 static int control(int cmd,int arg);
3 static int init(float*);
4 static void uninit();
5 static void reset();
6 static int play(void* data,int len,int flags);
7
8 #define LIBAO_PLUGIN_EXTERN(x) ao_functions_t audio_out_##x =\
9 {\
10 &info,\
11 control,\
12 init,\
13 uninit,\
14 reset,\
15 play,\
16 };