comparison libpurple/xmlnode.h @ 26668:f916afb91566

Fixing warnings from `make docs` and stuff
author Paul Aurich <paul@darkrain42.org>
date Thu, 12 Mar 2009 03:52:54 +0000
parents 4b8c4870b13a
children 7c3baa45c9c4
comparison
equal deleted inserted replaced
26177:85bb3539d302 26668:f916afb91566
302 /** 302 /**
303 * Creates a node from a XML File. Calling this on the 303 * Creates a node from a XML File. Calling this on the
304 * root node of an XML document will parse the entire document 304 * root node of an XML document will parse the entire document
305 * into a tree of nodes, and return the xmlnode of the root. 305 * into a tree of nodes, and return the xmlnode of the root.
306 * 306 *
307 * @param str The string of xml. 307 * @param dir The directory where the file is located
308 * @param description The description of the file being parsed 308 * @param filename The filename
309 * @process The utility that is calling xmlnode_from_file 309 * @param description A description of the file being parsed. Displayed to
310 * 310 * the user if the file cannot be read.
311 * @return The new node. 311 * @param process The subsystem that is calling xmlnode_from_file. Used as
312 * the category for debugging.
313 *
314 * @return The new node or NULL if an error occurred.
312 * 315 *
313 * @since 2.6.0 316 * @since 2.6.0
314 */ 317 */
315 xmlnode *xmlnode_from_file(const char *dir, const char *filename, 318 xmlnode *xmlnode_from_file(const char *dir, const char *filename,
316 const char *description, const char *process); 319 const char *description, const char *process);