diff --git a/CHANGES b/CHANGES index 0afe64a..7ec2a9d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,10 +1,11 @@ -CHANGES - 2008-03-18 +CHANGES - 2008-03-20 -------------------- CHANGES IN Mini-XML 2.5.1 + - The mxml.pc.in file was broken (STR #79) - The mxmldoc program now handles "typedef enum name {} name" - correctly. + correctly (STR #72) CHANGES IN Mini-XML 2.5 diff --git a/doc/reference.html b/doc/reference.html index 024a688..0cf198a 100644 --- a/doc/reference.html +++ b/doc/reference.html @@ -215,6 +215,7 @@ using a SAX callback.">mxmlSAXLoadString
Load callback function
-typedef mxml_type_t (*mxml_load_cb_t)(mxml_node_t *); +typedef mxml_type_t (*mxml_load_cb_t)(mxml_node_t *);
An XML node.
@@ -1425,6 +1426,11 @@ typedef enum mxml_sax_event_e mxml_sax_event_t;typedef struct mxml_text_s mxml_text_t;
+The XML node type.
++typedef enum mxml_type_e mxml_type_t; +
An XML node value.
@@ -1504,7 +1510,7 @@ typedef union mxml_value_u mxml_value_t;
struct mxml_node_s *parent;
struct mxml_node_s *prev;
int ref_count;
- mxml_type_t type;
+ mxml_type_t type;
void *user_data;
mxml_value_t value;
};