mirror of
https://github.com/mpv-player/mpv
synced 2024-12-11 17:37:23 +00:00
d65c8518de
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9634 b3059339-0415-0410-9bf9-f77b7e298cf2
17 lines
278 B
C
17 lines
278 B
C
// prototypes:
|
|
static int control(int cmd, void *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,\
|
|
};
|