comparison libpurple/xmlnode.h @ 21667:919338d399ae

merge of '2fcb5d2cb35c5ba692592e22bc442c3d62000f85' and '61c8d242483046a3b3b43cd1afbb794af35a08c9'
author Ethan Blanton <elb@pidgin.im>
date Tue, 27 Nov 2007 15:57:08 +0000
parents eb0f36c3a58f
children 774ef2a2e7f8 efde7e6ed5f2 84c7bb2ca41f
comparison
equal deleted inserted replaced
21438:4fe9acb6b514 21667:919338d399ae
156 void xmlnode_set_attrib(xmlnode *node, const char *attr, const char *value); 156 void xmlnode_set_attrib(xmlnode *node, const char *attr, const char *value);
157 157
158 /** 158 /**
159 * Sets a prefixed attribute for a node 159 * Sets a prefixed attribute for a node
160 * 160 *
161 * @param node The node to set an attribute for. 161 * @param node The node to set an attribute for.
162 * @param attr The name of the attribute to set 162 * @param attr The name of the attribute to set
163 * @param xmlns The prefix of the attribute to ste 163 * @param prefix The prefix of the attribute to ste
164 * @param value The value of the attribute 164 * @param value The value of the attribute
165 */ 165 */
166 void xmlnode_set_attrib_with_prefix(xmlnode *node, const char *attr, const char *prefix, const char *value); 166 void xmlnode_set_attrib_with_prefix(xmlnode *node, const char *attr, const char *prefix, const char *value);
167 167
168 /** 168 /**
169 * Sets a namespaced attribute for a node 169 * Sets a namespaced attribute for a node
230 const char *xmlnode_get_namespace(xmlnode *node); 230 const char *xmlnode_get_namespace(xmlnode *node);
231 231
232 /** 232 /**
233 * Sets the prefix of a node 233 * Sets the prefix of a node
234 * 234 *
235 * @param node The node to qualify 235 * @param node The node to qualify
236 * @param xmlns The prefix of the node 236 * @param prefix The prefix of the node
237 */ 237 */
238 void xmlnode_set_prefix(xmlnode *node, const char *prefix); 238 void xmlnode_set_prefix(xmlnode *node, const char *prefix);
239 239
240 /** 240 /**
241 * Returns the prefix of a node 241 * Returns the prefix of a node