]> icculus.org git repositories - taylor/freespace2.git/blob - src/sound/dscap-unix.cpp
finished cfilesystem.
[taylor/freespace2.git] / src / sound / dscap-unix.cpp
1 #include "pstypes.h"
2
3 void dscap_close()
4 {
5         STUB_FUNCTION;
6 }
7
8 int dscap_create_buffer(int freq, int bits_per_sample, int nchannels, int nseconds)
9 {
10         STUB_FUNCTION;
11         
12         return -1;
13 }
14
15 int dscap_get_raw_data(unsigned char *outbuf, unsigned int max_size)
16 {
17         STUB_FUNCTION;
18         
19         return -1;
20 }
21
22 int dscap_max_buffersize()
23 {
24         STUB_FUNCTION;
25         
26         return -1;
27 }
28
29 void dscap_release_buffer()
30 {
31         STUB_FUNCTION;
32 }
33
34 int dscap_start_record()
35 {
36         STUB_FUNCTION;
37         
38         return -1;
39 }
40
41 int dscap_stop_record()
42 {
43         STUB_FUNCTION;
44         
45         return -1;
46 }
47
48 int dscap_supported()
49 {
50         STUB_FUNCTION;
51         
52         return 0;
53 }
54