sofnode.h
来自「这是一个从音频信号里提取特征参量的程序」· C头文件 代码 · 共 35 行
H
35 行
// file: $isip/class/io/SofList/SofNode.h// version: $Id: SofNode.h,v 1.4 2000/10/03 12:59:37 picone Exp $//// this file is for internal use only//#ifdef ISIP_INTERNAL_USE_ONLY// make sure definitions are only made once//#ifndef ISIP_SOF_NODE#define ISIP_SOF_NODE// SofNode: a structure containing an entry for an object//typedef struct sof_index_node SofNode;struct sof_index_node { long name_d; // object name long tag_d; // object tag long pos_d; // position of data in the file long size_d; // size in bytes of data // for the tree // SofNode* parent_d; SofNode* left_d; SofNode* right_d;};// end of include file//#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?