mxml-private.h

来自「适用于嵌入式系统的XML解析库, 规模比libxml2小得多.」· C头文件 代码 · 共 53 行

H
53
字号
/* * "$Id: mxml-private.h 309 2007-09-21 04:46:02Z mike $" * * Private definitions for Mini-XML, a small XML-like file parsing library. * * Copyright 2007 by Michael Sweet. * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2, 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. *//* * Include necessary headers... */#include "config.h"#include "mxml.h"/* * Global, per-thread data... */typedef struct _mxml_global_s{  void	(*error_cb)(const char *);  int	num_entity_cbs;  int	(*entity_cbs[100])(const char *name);  int	wrap;  mxml_custom_load_cb_t	custom_load_cb;  mxml_custom_save_cb_t	custom_save_cb;} _mxml_global_t;/* * Functions... */extern _mxml_global_t	*_mxml_global(void);extern int		_mxml_entity_cb(const char *name);/* * End of "$Id: mxml-private.h 309 2007-09-21 04:46:02Z mike $". */

⌨️ 快捷键说明

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