blob: 46070997634e5c932ac4da382e64f529021efc42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
struct out_driver {
const char *name;
int (*init)(void);
void (*finish)(void);
int (*busy)(void);
void (*feed)(void *data, int bytes);
};
extern struct out_driver *out_current;
void SetupSound(void);
|