Ignore:
Timestamp:
Nov 7, 2005 3:47:28 PM (18 years ago)
Author:
bennylp
Message:

Added file I/O and file access API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/main/pjlib/include/pj/xml.h

    r11 r18  
    3131struct pj_xml_attr 
    3232{ 
    33     PJ_DECL_LIST_MEMBER(pj_xml_attr); 
    34     pj_str_t    name;       /**< Attribute name. */ 
    35     pj_str_t    value;      /**< Attribute value. */ 
     33    PJ_DECL_LIST_MEMBER(pj_xml_attr);   /**< Standard list elements.    */ 
     34    pj_str_t    name;                   /**< Attribute name.            */ 
     35    pj_str_t    value;                  /**< Attribute value.          */ 
    3636}; 
    3737 
     
    4040typedef struct pj_xml_node_head 
    4141{ 
    42     PJ_DECL_LIST_MEMBER(pj_xml_node); 
     42    PJ_DECL_LIST_MEMBER(pj_xml_node);   /**< Standard list elements.    */ 
    4343} pj_xml_node_head; 
    4444 
     
    4646struct pj_xml_node 
    4747{ 
    48     PJ_DECL_LIST_MEMBER(pj_xml_node);   /** List @a prev and @a next member */ 
    49     pj_str_t            name;           /** Node name. */ 
    50     pj_xml_attr         attr_head;      /** Attribute list. */ 
    51     pj_xml_node_head    node_head;      /** Node list. */ 
    52     pj_str_t            content;        /** Node content. */ 
     48    PJ_DECL_LIST_MEMBER(pj_xml_node);   /**< List @a prev and @a next member */ 
     49    pj_str_t            name;           /**< Node name.                      */ 
     50    pj_xml_attr         attr_head;      /**< Attribute list.                */ 
     51    pj_xml_node_head    node_head;      /**< Node list.                      */ 
     52    pj_str_t            content;        /**< Node content.                  */ 
    5353}; 
    5454 
Note: See TracChangeset for help on using the changeset viewer.