mirror of
https://github.com/mpv-player/mpv
synced 2024-11-07 01:47:00 +01:00
3493023bce
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3317 b3059339-0415-0410-9bf9-f77b7e298cf2
17 lines
275 B
C
17 lines
275 B
C
// 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,\
|
|
};
|