mirror of
https://github.com/michaelrsweet/mxml.git
synced 2024-11-24 11:25:30 +00:00
Fix mxml.pc typo (STR #79)
This commit is contained in:
parent
a57b72a556
commit
d7fcf13ff8
5
CHANGES
5
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
|
||||
|
@ -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;
|
||||
struct <a href="#mxml_node_s">mxml_node_s</a> *parent;<br>
|
||||
struct <a href="#mxml_node_s">mxml_node_s</a> *prev;<br>
|
||||
int ref_count;<br>
|
||||
mxml_type_t type;<br>
|
||||
<a href="#mxml_type_t">mxml_type_t</a> type;<br>
|
||||
void *user_data;<br>
|
||||
<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@
|
||||
|
4
mxml.xml
4
mxml.xml
@ -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…
Reference in New Issue
Block a user