⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.h

📁 DVB软件,基于CT216软件的开发源程序.
💻 H
字号:
/*
 * ******************************************************************
 * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -