csl_types.h

来自「dsp在音频处理中的运用」· C头文件 代码 · 共 55 行

H
55
字号
/*****************************************************\ *  Copyright 2003, Texas Instruments Incorporated.  * *  All rights reserved.                             * *  Restricted rights to use, duplicate or disclose  * *  this   code   are  granted   through  contract.  * \*****************************************************/#ifndef _CSL_TYPES_H_#define _CSL_TYPES_H_#ifdef __cplusplusextern "C" {#endif#include <tistdtypes.h>typedef Int16		CSL_Uid;typedef Int16		CSL_ModuleId;typedef Uint32 		CSL_Xio;typedef Uint16      CSL_BitMask16;typedef Uint32      CSL_BitMask32;typedef ioport volatile unsigned int * CSL_IoPort;typedef volatile Uint16 CSL_Reg16;typedef volatile Uint32 CSL_Reg32;typedef Int16		CSL_Status;typedef Int16		CSL_InstNum;typedef Int16 		CSL_ChaNum;typedef enum {  CSL_EXCLUSIVE = 0,  CSL_SHARED    = 1} CSL_OpenMode;typedef enum {  CSL_FAIL      = 0,  CSL_PASS      = 1} CSL_Test;#ifndef NULL#define NULL    (0)#endif#ifdef __cplusplus}#endif#endif /* _CSL_TYPES_H_ */

⌨️ 快捷键说明

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