forked from shlomif/perl-XML-LibXML
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xpath.h
31 lines (21 loc) · 826 Bytes
/
xpath.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef __LIBXML_XPATH_H__
#define __LIBXML_XPATH_H__
#include <libxml/tree.h>
#include <libxml/xpath.h>
void
perlDocumentFunction( xmlXPathParserContextPtr ctxt, int nargs );
xmlNodeSetPtr
domXPathSelect( xmlNodePtr refNode, xmlChar * xpathstring );
xmlXPathObjectPtr
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring, int to_bool );
xmlNodeSetPtr
domXPathCompSelect( xmlNodePtr refNode, xmlXPathCompExprPtr comp );
xmlXPathObjectPtr
domXPathCompFind( xmlNodePtr refNode, xmlXPathCompExprPtr comp, int to_bool );
xmlNodeSetPtr
domXPathSelectCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring );
xmlXPathObjectPtr
domXPathFindCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring, int to_bool );
xmlXPathObjectPtr
domXPathCompFindCtxt( xmlXPathContextPtr ctxt, xmlXPathCompExprPtr comp, int to_bool );
#endif