comparison libpurple/xmlnode.h @ 27814:4f6883b854a2

We can use the typedef here, right?
author Mark Doliner <mark@kingant.net>
date Tue, 04 Aug 2009 02:06:01 +0000
parents 350f097019eb
children 77cd42f08ba1
comparison
equal deleted inserted replaced
27813:815d9ce1a8b0 27814:4f6883b854a2
51 char *name; /**< The name of the node. */ 51 char *name; /**< The name of the node. */
52 char *xmlns; /**< The namespace of the node */ 52 char *xmlns; /**< The namespace of the node */
53 XMLNodeType type; /**< The type of the node. */ 53 XMLNodeType type; /**< The type of the node. */
54 char *data; /**< The data for the node. */ 54 char *data; /**< The data for the node. */
55 size_t data_sz; /**< The size of the data. */ 55 size_t data_sz; /**< The size of the data. */
56 struct _xmlnode *parent; /**< The parent node or @c NULL.*/ 56 xmlnode *parent; /**< The parent node or @c NULL.*/
57 struct _xmlnode *child; /**< The child node or @c NULL.*/ 57 xmlnode *child; /**< The child node or @c NULL.*/
58 struct _xmlnode *lastchild; /**< The last child node or @c NULL.*/ 58 xmlnode *lastchild; /**< The last child node or @c NULL.*/
59 struct _xmlnode *next; /**< The next node or @c NULL. */ 59 xmlnode *next; /**< The next node or @c NULL. */
60 char *prefix; /**< The namespace prefix if any. */ 60 char *prefix; /**< The namespace prefix if any. */
61 GHashTable *namespace_map; /**< The namespace map. */ 61 GHashTable *namespace_map; /**< The namespace map. */
62 }; 62 };
63 63
64 /** 64 /**