📄 algmin.h
字号:
/*
* 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.
*
*/
/* "@(#) ReferenceFrameworks 2.20.00.08 07-18-03 (swat-f02)" */
/*
* ======== algmin.h ========
*/
#ifndef ALGMIN_
#define ALGMIN_
#include <std.h>
#include <ialg.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Maximum number of memTab descriptors returned by an algorithm */
#define ALGMIN_MAXMEMRECS 16
/* Instantiate a 'static' XDAIS algorithm */
extern IALG_Handle ALGMIN_new(IALG_Fxns *fxns, IALG_Params *params,
Char *algChanBufs[], SmUns numAlgChanBufs);
/* Initialize scratch memory buffers before processing */
extern Void ALGMIN_activate(IALG_Handle alg);
/* Save all persistent data to non-scratch memory */
extern Void ALGMIN_deactivate(IALG_Handle alg);
/* ALGMIN Module Initialization */
extern Void ALGMIN_init(Void);
/* ALGMIN Module Finalization */
extern Void ALGMIN_exit(Void);
#ifdef __cplusplus
}
#endif /* extern "C" */
#endif /* ALGMIN_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -