You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
444 B
22 lines
444 B
/*
|
|
* Audio 'LIB' defines
|
|
*/
|
|
#include "../include/wm_cdda.h"
|
|
|
|
#ifndef NULL
|
|
#define NULL 0
|
|
#endif
|
|
|
|
struct audio_oops {
|
|
int (*wmaudio_open)(void);
|
|
int (*wmaudio_close)(void);
|
|
int (*wmaudio_play)(struct cdda_block*);
|
|
int (*wmaudio_stop)(void);
|
|
int (*wmaudio_state)(struct cdda_block*);
|
|
int (*wmaudio_balance)(int);
|
|
int (*wmaudio_volume)(int);
|
|
};
|
|
|
|
extern struct audio_oops* setup_soundsystem(const char*, const char*, const char*);
|
|
|