notaz.gp2x.de
/
pcsx_rearmed.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Merge pull request #243 from retro-wertz/unai_fixes
[pcsx_rearmed.git]
/
plugins
/
dfsound
/
out.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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);