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]
/
sound-ioctl.h
blob
b00aca9394d1627b5d32d8196e23053c84fbb5a3
1
#ifndef SOUND_IOCTL_H
2
#define SOUND_IOCTL_H
3
4
///// Wrappers to OSS ioctl() calls /////
5
6
int
sound_set_format
(
int
fd
,
int
format
);
7
int
sound_set_srate
(
int
fd
,
int
srate
);
8
int
sound_set_channels
(
int
fd
,
int
channels
);
9
10
#endif