Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/dll/amp/proto.h
1074 views
1
/* From: util.c */
2
void die(char *, ...);
3
void warn(char *, ...);
4
void msg(char *, ...);
5
void debugSetup(char *);
6
void debugOptions();
7
8
/* From: audioIO_<OSTYPE>.c */
9
void audioOpen(int frequency, int stereo, int volume);
10
void audioSetVolume(int);
11
void audioFlush();
12
void audioClose();
13
int audioWrite(char *, int);
14
int getAudioFd();
15
void audioBufferOn(int);
16
17
18
/* From: buffer.c */
19
void printout(void);
20
int audioBufferOpen(int, int, int);
21
void audioBufferClose();
22
void audioBufferWrite(char *, int);
23
void audioBufferFlush();
24
25
/* From: audio.c */
26
void displayUsage();
27
28