1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-16 02:50:07 +03:00

small cleanup update Daniel

* include/libxml/xpath.h: small cleanup
* doc/xml.html: update
Daniel
This commit is contained in:
Daniel Veillard 2001-07-07 00:18:23 +00:00
parent f524d6e1d9
commit 5168dbfe53
3 changed files with 17 additions and 7 deletions
ChangeLog
doc
include/libxml

@ -1,3 +1,8 @@
Sat Jul 7 02:16:00 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* include/libxml/xpath.h: small cleanup
* doc/xml.html: update
Fri Jul 6 01:40:23 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
* Makefile.am configure.in include/libxml/xmlwin32version.h:

@ -1619,15 +1619,15 @@ Gnome CVS base under gnome-xml/example</p>
documentation</li>
<li><a href="mailto:sherwin@nlm.nih.gov">Ziying Sherwin</a> provided <a
href="http://xmlsoft.org/messages/0488.html">man pages</a></li>
<li>Seems <a href="http://www.arsdigita.com/">ArsDigita</a> wrote a Tcl
wrapper for libxml called <a
href="http://www.linuxgazette.com/issue63/washington.html">ns_xml</a></li>
<li>there is a module for <a
href="http://acs-misc.sourceforge.net/nsxml.html">libxml/libxslt support
in OpenNSD/AOLServer</a></li>
</ul>
<p></p>
<p><a href="mailto:Daniel.Veillard@imag.fr">Daniel Veillard</a></p>
<p>$Id: xml.html,v 1.98 2001/07/05 09:46:10 veillard Exp $</p>
<p>$Id: xml.html,v 1.99 2001/07/05 23:31:40 veillard Exp $</p>
</body>
</html>

@ -130,11 +130,16 @@ struct _xmlXPathVariable {
xmlXPathObjectPtr value; /* the value */
};
/*
* an evaluation function, the parameters are on the context stack
/**
* xmlXPathEvalFunc:
* @ctxt: an XPath parser context
* @nargs: the number of arguments passed to the function
*
* an XPath evaluation function, the parameters are on thei XPath context stack
*/
typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt, int nargs);
typedef void (*xmlXPathEvalFunc)(xmlXPathParserContextPtr ctxt,
int nargs);
/*
* Extra function: a name and a evaluation function.