comparison libpurple/xmlnode.h @ 29681:4548c114e953

propagate from branch 'im.pidgin.pidgin' (head 371b6104658ad98c418ac711643192c2e34428ea) to branch 'im.pidgin.cpw.attention_ui' (head 2b6154716621ea07b8e3ea452bace17539e83494)
author Marcus Lundblad <ml@update.uu.se>
date Sun, 26 Apr 2009 20:01:17 +0000
parents 872d30754311
children 350f097019eb
comparison
equal deleted inserted replaced
29680:ce876e58cf6a 29681:4548c114e953
333 /** 333 /**
334 * Creates a node from a XML File. Calling this on the 334 * Creates a node from a XML File. Calling this on the
335 * root node of an XML document will parse the entire document 335 * root node of an XML document will parse the entire document
336 * into a tree of nodes, and return the xmlnode of the root. 336 * into a tree of nodes, and return the xmlnode of the root.
337 * 337 *
338 * @param str The string of xml. 338 * @param dir The directory where the file is located
339 * @param description The description of the file being parsed 339 * @param filename The filename
340 * @process The utility that is calling xmlnode_from_file 340 * @param description A description of the file being parsed. Displayed to
341 * 341 * the user if the file cannot be read.
342 * @return The new node. 342 * @param process The subsystem that is calling xmlnode_from_file. Used as
343 * the category for debugging.
344 *
345 * @return The new node or NULL if an error occurred.
343 * 346 *
344 * @since 2.6.0 347 * @since 2.6.0
345 */ 348 */
346 xmlnode *xmlnode_from_file(const char *dir, const char *filename, 349 xmlnode *xmlnode_from_file(const char *dir, const char *filename,
347 const char *description, const char *process); 350 const char *description, const char *process);