view libao2/audio_plugin_internal.h @ 3206:588102344a68

DGA handling changed (Arpi's request) correct options: --enable-dga => auto (default) --enable-dga=1 or ...=2 --disable-dga changed --enable/disable-select handling to behave as the other tests
author pl
date Thu, 29 Nov 2001 18:56:08 +0000
parents ef2287ccc42b
children bb1d608c73ae
line wrap: on
line source

// 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_functions_t audio_plugin_##x =\
{\
	&info,\
	control,\
	init,\
        uninit,\
	reset,\
	play,\
};