psx_gpu: consolidate C code, implement exnhancement asm
[pcsx_rearmed.git] / plugins / dfsound / out.h
1
2 struct out_driver {
3         const char *name;
4         int (*init)(void);
5         void (*finish)(void);
6         int (*busy)(void);
7         void (*feed)(void *data, int bytes);
8 };
9
10 extern struct out_driver *out_current;
11
12 void SetupSound(void);