Ignore:
Timestamp:
Jan 18, 2006 11:34:15 PM (18 years ago)
Author:
bennylp
Message:

Complete tsx layer selftest, implemented authentication framework

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjlib-util/include/pjlib-util/xml.h

    r65 r123  
    9898 
    9999/** 
     100 * Create an empty node. 
     101 * 
     102 * @param pool      Pool. 
     103 * @param name      Node name. 
     104 * 
     105 * @return          The new node. 
     106 */ 
     107PJ_DECL(pj_xml_node*) pj_xml_node_new(pj_pool_t *pool, const pj_str_t *name); 
     108 
     109 
     110/** 
     111 * Create new XML attribute. 
     112 * 
     113 * @param pool      Pool. 
     114 * @param name      Attribute name. 
     115 * @param attr      Attribute value. 
     116 * 
     117 * @return          The new XML attribute. 
     118 */ 
     119PJ_DECL(pj_xml_attr*) pj_xml_attr_new(pj_pool_t *pool, const pj_str_t *name, 
     120                                      const pj_str_t *value); 
     121 
     122/** 
    100123 * Add node to another node. 
    101124 * 
Note: See TracChangeset for help on using the changeset viewer.