repo.or.cz
/
aftubes.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
scons --> make
[aftubes.git]
/
soundout.h
blob
0fcbeac80db5b84b9c3171876b4a6171f8f90a8c
1
#ifndef SOUNDOUT_H
2
#define SOUNDOUT_H
3
4
#include
"aformat.h"
5
#include
"stddef.h"
6
7
struct
soundout
{
8
int
fd
;
9
};
10
11
int
soundout_open
(
struct
soundout
*
so
,
const struct
aformat
*
af
);
12
int
soundout_write
(
struct
soundout
*
so
,
const void
*
buf
,
size_t
len
);
13
14
#endif