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

📄 syntax-tree.h

📁 ethereal公司开发的aodv路由协议代码
💻 H
字号:
/* * $Id: syntax-tree.h,v 1.3 2001/02/27 19:23:28 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> * Copyright 2001 Gerald Combs * *  * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. *  * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. *  * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA. */#ifndef SYNTAX_TREE_H#define SYNTAX_TREE_H#include <glib.h>#include "cppmagic.h"typedef enum {	STTYPE_UNINITIALIZED,	STTYPE_TEST,	STTYPE_STRING,	STTYPE_FIELD,	STTYPE_FVALUE,	STTYPE_INTEGER,	STTYPE_RANGE,	STTYPE_NUM_TYPES} sttype_id_t;typedef gpointer        (*STTypeNewFunc)(gpointer);typedef void            (*STTypeFreeFunc)(gpointer);/* Type information */typedef struct {	sttype_id_t		id;	const char		*name;	STTypeNewFunc		func_new;	STTypeFreeFunc		func_free;} sttype_t;/* Node (type instance) information */typedef struct {	guint32		magic;	sttype_t	*type;	/* This could be made an enum, but I haven't	 * set aside to time to do so. */	gpointer	data;	guint32		value;} stnode_t;voidsttype_init(void);voidsttype_cleanup(void);voidsttype_register(sttype_t *type);stnode_t*stnode_new(sttype_id_t type_id, gpointer data);voidstnode_init(stnode_t *node, sttype_id_t type_id, gpointer data);voidstnode_init_int(stnode_t *node, sttype_id_t type_id, guint32 value);voidstnode_free(stnode_t *node);const char*stnode_type_name(stnode_t *node);sttype_id_tstnode_type_id(stnode_t *node);gpointerstnode_data(stnode_t *node);guint32stnode_value(stnode_t *node);#define assert_magic(obj, mnum) \        g_assert((obj)); \        if ((obj)->magic != (mnum)) { \                g_print("\nMagic num is 0x%08x, but should be 0x%08x", \                                (obj)->magic, (mnum)); \                g_assert((obj)->magic == (mnum)); \        }#define STTYPE_ACCESSOR(ret,type,attr,magicnum) \	ret \	CONCAT(CONCAT(CONCAT(sttype_,type),_),attr) (stnode_t *node) \{\	CONCAT(type,_t)	*value; \	value = stnode_data(node);\	assert_magic(value, magicnum); \	return value->attr; \}	#define STTYPE_ACCESSOR_PROTOTYPE(ret,type,attr) \	ret \	CONCAT(CONCAT(CONCAT(sttype_,type),_),attr) (stnode_t *node);#endif

⌨️ 快捷键说明

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