aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2009-08-24 19:45:54 +0200
committerDaniel Veillard <veillard@redhat.com>2009-08-24 19:45:54 +0200
commitb9590e9cd27992e5b5de01fd1adfffac4156a48b (patch)
treed5c03c672b0151910a9db5eafaf4c2de1705cb34 /include
parent56a03035bf94defaf0777db54db59530146f5f9b (diff)
downloadandroid_external_libxml2-b9590e9cd27992e5b5de01fd1adfffac4156a48b.tar.gz
android_external_libxml2-b9590e9cd27992e5b5de01fd1adfffac4156a48b.tar.bz2
android_external_libxml2-b9590e9cd27992e5b5de01fd1adfffac4156a48b.zip
440226 Add xmlXIncludeProcessTreeFlagsData API
* xinclude.c include/libxml/xinclude.h: new function similar to xmlXIncludeProcessFlagsData but operating on a subtree
Diffstat (limited to 'include')
-rw-r--r--include/libxml/xinclude.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/include/libxml/xinclude.h b/include/libxml/xinclude.h
index ba9c9b59..863ab25a 100644
--- a/include/libxml/xinclude.h
+++ b/include/libxml/xinclude.h
@@ -89,18 +89,22 @@ typedef xmlXIncludeCtxt *xmlXIncludeCtxtPtr;
/*
* standalone processing
*/
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
xmlXIncludeProcess (xmlDocPtr doc);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
xmlXIncludeProcessFlags (xmlDocPtr doc,
int flags);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
xmlXIncludeProcessFlagsData(xmlDocPtr doc,
int flags,
void *data);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
+ xmlXIncludeProcessTreeFlagsData(xmlNodePtr tree,
+ int flags,
+ void *data);
+XMLPUBFUN int XMLCALL
xmlXIncludeProcessTree (xmlNodePtr tree);
-XMLPUBFUN int XMLCALL
+XMLPUBFUN int XMLCALL
xmlXIncludeProcessTreeFlags(xmlNodePtr tree,
int flags);
/*