repo.or.cz
/
kugel-rb
/
myfork.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix red.
[kugel-rb/myfork.git]
/
apps
/
plugins
/
rockboy
/
pcm.h
blob
b90bba087fa460f056b0caab1b2c49d4a6b61cf2
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
short
*
buf
;
13
int
pos
;
14
};
15
16
extern
struct
pcm pcm
;
17
18
void
pcm_init
(
void
);
19
int
pcm_submit
(
void
);
20
void
pcm_close
(
void
);
21
22
#endif
23
24