repo.or.cz
/
rofl0r-gnuboy.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
re-generate configure
[rofl0r-gnuboy.git]
/
pcm.h
blob
3719933520e1c5090c5e191b4dbe4124c69b8531
1
2
#ifndef __PCM_H__
3
#define __PCM_H__
4
5
6
#include
"defs.h"
7
8
struct
pcm
9
{
10
int
hz
,
len
;
11
int
stereo
;
12
byte
*
buf
;
13
int
pos
;
14
};
15
16
extern
struct
pcm pcm
;
17
18
19
#endif
20
21