list.h

来自「DVB软件,基于CT216软件的开发源程序.」· C头文件 代码 · 共 30 行

H
30
字号
/*
 * ******************************************************************
 * Linked List Definitions & Operations Interface
 * ******************************************************************
 * version: 1.3.9
 * r-date: April 25, 2006
 * author: Royce Wu
 * ******************************************************************
 */

#ifndef _LIST_H
#define _LIST_H 139_0425

#include <stdio.h>
//#include <stdlib.h>
#include <string.h>
/*******************************************************************/

// Reserve vs. Reverse

#define MD_ListReservedID_Max	((short)(0x7FFF)) // for List nodes
#define MD_ListReservedID_Min	((short)(0x8000)) // for List nodes
#define MD_ListUninitID			((short)(0xFFFF)) // ==-1

/*******************************************************************/

typedef int (*FtorNodeDestruct)(void *); // void * ㄤ龟琌 Node *

typedef int (*FtorOneObjPtr)(void *); // void * ㄤ龟琌 NodePtr->OBJ_BODY
// ㊣

⌨️ 快捷键说明

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