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

📄 mxml-private.h

📁 适用于嵌入式系统的XML解析库, 规模比libxml2小得多.
💻 H
字号:
/* * "$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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -