typedef.h
来自「这是G.723和G.729的音频编解码的源代码」· C头文件 代码 · 共 21 行
H
21 行
/* Version 2.0 Last modified: 6/30/95 */
/* WARNING: Make sure that the proper flags are defined for your system */
/*
Types definitions
*/
#if defined(__BORLANDC__) || defined (__WATCOMC__) || defined(_MSC_VER) || defined(__ZTC__)
typedef long int Word32 ;
typedef short int Word16 ;
typedef short int Flag ;
#elif defined(__sun)
typedef short Word16;
typedef long Word32;
typedef int Flag;
#elif defined(__unix__) || defined(__unix)
typedef short Word16;
typedef int Word32;
typedef int Flag;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?