notaz.gp2x.de
/
pcsx_rearmed.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
add a thp-based huge page alloc fallback
[pcsx_rearmed.git]
/
plugins
/
dfsound
/
out.h
1
#ifndef __P_OUT_H__
2
#define __P_OUT_H__
3
4
struct out_driver {
5
const char *name;
6
int (*init)(void);
7
void (*finish)(void);
8
int (*busy)(void);
9
void (*feed)(void *data, int bytes);
10
};
11
12
extern struct out_driver *out_current;
13
14
void SetupSound(void);
15
16
#endif /* __P_OUT_H__ */