comparison libgaim/xmlnode.h @ 14436:289490ee84d1

[gaim-migrate @ 17150] libxml2 is now required for XML parsing committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Mon, 04 Sep 2006 03:55:12 +0000
parents 2d7086454b08
children 500a8f54354e
comparison
equal deleted inserted replaced
14435:9c6533500fff 14436:289490ee84d1
40 */ 40 */
41 typedef struct _xmlnode xmlnode; 41 typedef struct _xmlnode xmlnode;
42 struct _xmlnode 42 struct _xmlnode
43 { 43 {
44 char *name; /**< The name of the node. */ 44 char *name; /**< The name of the node. */
45 #ifdef HAVE_LIBXML
46 char *namespace; /**< The namespace of the node */ 45 char *namespace; /**< The namespace of the node */
47 #endif
48 XMLNodeType type; /**< The type of the node. */ 46 XMLNodeType type; /**< The type of the node. */
49 char *data; /**< The data for the node. */ 47 char *data; /**< The data for the node. */
50 size_t data_sz; /**< The size of the data. */ 48 size_t data_sz; /**< The size of the data. */
51 struct _xmlnode *parent; /**< The parent node or @c NULL.*/ 49 struct _xmlnode *parent; /**< The parent node or @c NULL.*/
52 struct _xmlnode *child; /**< The child node or @c NULL.*/ 50 struct _xmlnode *child; /**< The child node or @c NULL.*/