comparison libpurple/xmlnode.h @ 29298:fb99a0067812

propagate from branch 'im.pidgin.pidgin' (head 70d69397ed952b26b453423c381c70d6783eb66d) to branch 'im.pidgin.cpw.attention_ui' (head 1cf0dea282a0d0e4aeac4770e0150d6d0c10830a)
author Marcus Lundblad <ml@update.uu.se>
date Thu, 13 Aug 2009 17:42:44 +0000
parents 4f6883b854a2
children 77cd42f08ba1
comparison
equal deleted inserted replaced
29297:338d6a211055 29298:fb99a0067812
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 /**