适用于嵌入式系统的XML解析库, 规模比libxml2小得多.

源代码在线查看: mxml-private.h

软件大小: 242 K
上传用户: xufengping716
关键词: libxml2 XML 嵌入式系统
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * "$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 $".				 */							

相关资源