scons --> make
[aftubes.git] / soundout.h
blob0fcbeac80db5b84b9c3171876b4a6171f8f90a8c
1 #ifndef SOUNDOUT_H
2 #define SOUNDOUT_H
4 #include "aformat.h"
5 #include "stddef.h"
7 struct soundout {
8 int fd;
9 };
11 int soundout_open(struct soundout *so, const struct aformat *af);
12 int soundout_write(struct soundout *so, const void *buf, size_t len);
14 #endif