Fix mxml.pc typo (STR #79)

pull/193/head
Michael R Sweet 16 years ago
parent a57b72a556
commit d7fcf13ff8
  1. 5
      CHANGES
  2. 10
      doc/reference.html
  3. 2
      mxml.pc.in
  4. 4
      mxml.xml

@ -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

@ -215,6 +215,7 @@ using a SAX callback.">mxmlSAXLoadString</a></li>
<li><a href="#mxml_sax_cb_t" title="SAX callback function">mxml_sax_cb_t</a></li>
<li><a href="#mxml_sax_event_t" title="SAX event type.">mxml_sax_event_t</a></li>
<li><a href="#mxml_text_t" title="An XML text value.">mxml_text_t</a></li>
<li><a href="#mxml_type_t" title="The XML node type.">mxml_type_t</a></li>
<li><a href="#mxml_value_t" title="An XML node value.">mxml_value_t</a></li>
</ul></li>
<li><a href="#STRUCTURES">Structures</a><ul class="code">
@ -1398,7 +1399,7 @@ typedef struct <a href="#mxml_index_s">mxml_index_s</a> mxml_index_t;
<h3 class="typedef"><a name="mxml_load_cb_t">mxml_load_cb_t</a></h3>
<p class="description">Load callback function</p>
<p class="code">
typedef mxml_type_t (*mxml_load_cb_t)(<a href="#mxml_node_t">mxml_node_t</a> *);
typedef <a href="#mxml_type_t">mxml_type_t</a> (*mxml_load_cb_t)(<a href="#mxml_node_t">mxml_node_t</a> *);
</p>
<h3 class="typedef"><a name="mxml_node_t">mxml_node_t</a></h3>
<p class="description">An XML node.</p>
@ -1425,6 +1426,11 @@ typedef enum <a href="#mxml_sax_event_e">mxml_sax_event_e</a> mxml_sax_event_t;
<p class="code">
typedef struct <a href="#mxml_text_s">mxml_text_s</a> mxml_text_t;
</p>
<h3 class="typedef"><a name="mxml_type_t">mxml_type_t</a></h3>
<p class="description">The XML node type.</p>
<p class="code">
typedef enum <a href="#mxml_type_e">mxml_type_e</a> mxml_type_t;
</p>
<h3 class="typedef"><a name="mxml_value_t">mxml_value_t</a></h3>
<p class="description">An XML node value.</p>
<p class="code">
@ -1504,7 +1510,7 @@ typedef union <a href="#mxml_value_u">mxml_value_u</a> mxml_value_t;
&nbsp;&nbsp;&nbsp;&nbsp;struct <a href="#mxml_node_s">mxml_node_s</a> *parent;<br>
&nbsp;&nbsp;&nbsp;&nbsp;struct <a href="#mxml_node_s">mxml_node_s</a> *prev;<br>
&nbsp;&nbsp;&nbsp;&nbsp;int ref_count;<br>
&nbsp;&nbsp;&nbsp;&nbsp;mxml_type_t type;<br>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#mxml_type_t">mxml_type_t</a> type;<br>
&nbsp;&nbsp;&nbsp;&nbsp;void *user_data;<br>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#mxml_value_t">mxml_value_t</a> value;<br>
};</p>

@ -6,5 +6,5 @@ includedir=@includedir@
Name: Mini-XML
Description: Lightweight XML support library
Version: @VERSION@
Libs: @PC_LIBS@ @PHTREAD_LIBS@
Libs: @PC_LIBS@ @PTHREAD_LIBS@
Cflags: @PC_CFLAGS@ @PTHREAD_FLAGS@

@ -1290,6 +1290,10 @@ the walk to the node's children.</description>
<description>Text fragment</description>
</constant>
</enumeration>
<typedef name="mxml_type_t">
<description>The XML node type.</description>
<type>enum mxml_type_e</type>
</typedef>
<typedef name="mxml_value_t">
<type>union mxml_value_u</type>
<description>An XML node value.</description>

Loading…
Cancel
Save