mirror of
https://github.com/GNOME/libxml2.git
synced 2025-02-23 18:29:14 +08:00
exported xmlXPath{NAN,PINF,NINF} fixed xmlXPathNodeSetItem when passing
* include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF} fixed xmlXPathNodeSetItem when passing index=0
This commit is contained in:
parent
05dec34439
commit
496be68388
@ -1,3 +1,8 @@
|
||||
Sun Jul 16 00:17:15 CEST 2001 Thomas Broyer <tbroyer@ltgt.net>
|
||||
|
||||
* include/libxml/xpath.h: exported xmlXPath{NAN,PINF,NINF}
|
||||
fixed xmlXPathNodeSetItem when passing index=0
|
||||
|
||||
Sun Jul 15 17:58:44 CEST 2001 Daniel Veillard <Daniel.Veillard@imag.fr>
|
||||
|
||||
* include/libxml/xmlwin32version.h.in: added xmlCheckVersion()
|
||||
|
@ -283,11 +283,15 @@ typedef void (*xmlXPathFunction) (xmlXPathParserContextPtr ctxt, int nargs);
|
||||
* Objects and Nodesets handling
|
||||
*/
|
||||
|
||||
LIBXML_DLL_IMPORT extern double xmlXPathNAN;
|
||||
LIBXML_DLL_IMPORT extern double xmlXPathPINF;
|
||||
LIBXML_DLL_IMPORT extern double xmlXPathNINF;
|
||||
|
||||
/* These macros may later turn into functions */
|
||||
#define xmlXPathNodeSetGetLength(ns) ((ns) ? (ns)->nodeNr : 0)
|
||||
#define xmlXPathNodeSetItem(ns, index) \
|
||||
((((ns) != NULL) && \
|
||||
((index) > 0) && ((index) <= (ns)->nodeNr)) ? \
|
||||
((index) >= 0) && ((index) < (ns)->nodeNr)) ? \
|
||||
(ns)->nodeTab[(index)] \
|
||||
: NULL)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user