maicomp.h
来自「This the source release kit for the foll」· C头文件 代码 · 共 27 行
H
27 行
//------------------------------------------------------------------------------
// File: maicomp.h
//------------------------------------------------------------------------------
#include "diu.h"
/***** shared library - dynamic loading wrappers *****/
typedef void * LibHandle_t;
/***** Component Loaders *****/
/* Structure for "Active" (i.e. loaded) components */
typedef struct ActiveCompInfo_s
{
unsigned int bLoaded;
unsigned int eCompID;
LibHandle_t hLib;
DIUCompHandle_t hComp;
pfDIUCompCreate_t pfCompCreate;
pfDIUCompRelease_t pfCompRelease;
} ActiveCompInfo_t;
int DecoderOpen(DIUCompHandle_t *phComp);
void DecoderClose(DIUCompHandle_t hComp);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?