2001-11-24 05:24:06 +00:00
|
|
|
// prototypes:
|
|
|
|
static int control(int cmd,int arg);
|
2001-11-25 14:29:54 +00:00
|
|
|
static int init();
|
2001-11-24 05:24:06 +00:00
|
|
|
static void uninit();
|
|
|
|
static void reset();
|
2001-11-25 14:29:54 +00:00
|
|
|
static int play();
|
2001-11-24 05:24:06 +00:00
|
|
|
|
2001-12-04 15:45:21 +00:00
|
|
|
#define LIBAO_PLUGIN_EXTERN(x) ao_plugin_functions_t audio_plugin_##x =\
|
2001-11-24 05:24:06 +00:00
|
|
|
{\
|
|
|
|
&info,\
|
|
|
|
control,\
|
|
|
|
init,\
|
|
|
|
uninit,\
|
|
|
|
reset,\
|
|
|
|
play,\
|
|
|
|
};
|