lec_ti.h

来自「使用於 TI dsk6711中的很多好用的例子可以看」· C头文件 代码 · 共 60 行

H
60
字号
/*

 *  Copyright 2003 by Texas Instruments Incorporated.

 *  All rights reserved. Property of Texas Instruments Incorporated.

 *  Restricted rights to use, duplicate or disclose this code are

 *  granted through contract.

 *

 *  @(#) XDAS 2.51.00 11-29-2003 (xdas-2.50.00.9)

 */

/*

 *  ======== lec_ti.h ========

 *  Vendor specific (TI) interface header for LEC algorithm.

 *

 *  Applications that use this interface enjoy type safety and

 *  and minimal overhead at the expense of being tied to a

 *  particular LEC implementation.

 *

 *  This header only contains declarations that are specific

 *  to this implementation.  Thus, applications that do not

 *  want to be tied to a particular implementation should never

 *  include this header (i.e., it should never directly

 *  reference anything defined in this header.)

 */

#ifndef LEC_TI_

#define LEC_TI_



#include <ilec.h>

#include <ilec_ti.h>



/*

 *  ======== LEC_TI_Handle ========

 *  This handle is used to reference a TI-extended LEC instance object.

 */

typedef struct ILEC_TI_Obj *LEC_TI_Handle;



/*

 *  ======== LEC_TI_Params ========

 *  TI-extended LEC instance object creation parameters.

 */

typedef ILEC_TI_Params LEC_TI_Params;



/*

 *  ======== LEC_TI_PARAMS ========

 *  Default TI-extended LEC instance object creation parameters.

 */

#define LEC_TI_PARAMS ILEC_TI_PARAMS



/*

 *  ======== LEC_TI_Status ========

 *  TI-extended LEC control/status structure.

 */

typedef ILEC_TI_Status LEC_TI_Status;



/* TI's implementation of LEC's IALG interface */

extern IALG_Fxns LEC_TI_IALG; 



/* TI's implementation of LEC's ILEC interface */

extern ILEC_Fxns LEC_TI_ILEC; 



#endif  /* LEC_TI_ */

⌨️ 快捷键说明

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