comparison libao2/audio_plugin.h @ 9633:12b1790038b0

64bit libao2 fix by Jens Axboe <mplayer-dev@kernel.dk>
author alex
date Fri, 21 Mar 2003 16:42:50 +0000
parents 776b686069af
children 815f03b7cee5
comparison
equal deleted inserted replaced
9632:cf92beb331ab 9633:12b1790038b0
3 3
4 // Functions supplied by plugins 4 // Functions supplied by plugins
5 typedef struct ao_plugin_functions_s 5 typedef struct ao_plugin_functions_s
6 { 6 {
7 ao_info_t *info; 7 ao_info_t *info;
8 int (*control)(int cmd,int arg); 8 int (*control)(int cmd, void *arg);
9 int (*init)(); 9 int (*init)();
10 void (*uninit)(); 10 void (*uninit)();
11 void (*reset)(); 11 void (*reset)();
12 int (*play)(); 12 int (*play)();
13 } ao_plugin_functions_t; 13 } ao_plugin_functions_t;