myaudio.h

来自「Fax and soft modem source code. - Slow m」· C头文件 代码 · 共 18 行

H
18
字号
#define SAMPLERATE 9600

extern void openaudio(), closeaudio();
extern void discardinput(), discardoutput(), flushoutput();
extern void setduplex(int);

struct coroutine;			/* def'd in <coro.h> */

extern void inparallel(coroutine*, coroutine*);

extern float insample();
extern void outsample(float);

inline bool after(int t1, int t2) { return ((t2-t1) & (1 << 31)) != 0; }

extern int samplecount;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?