sndlinux.h
来自「Audacity是一款用於錄音和編輯聲音的、免費的開放源碼軟體。它可以執行於Ma」· C头文件 代码 · 共 20 行
H
20 行
/* sndlinux.h -- system-specific definitions */#ifndef LINUX#define LINUX#endiftypedef double FASTFLOAT;typedef float MEMFLOAT;/* avoid conflicts if already defined: */#ifndef max/* min(n, sizeof(long)) doesn't work on RS6K without this: * (I never tracked down what min() was called and what was wrong.) */#define min(a, b) ((a) < (b) ? (a) : (b))#define max(a, b) ((a) > (b) ? (a) : (b))#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?