aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2003-06-09 09:10:36 +0000
committerDaniel Veillard <veillard@src.gnome.org>2003-06-09 09:10:36 +0000
commita37aab845c29de6c8292ffd502f6719da60efca0 (patch)
tree5efd267b04a602a270b77a38713b0b1cfa04bec9 /include
parente13261148beeb7b775ae71eb9be2ff5ec03da57f (diff)
downloadandroid_external_libxml2-a37aab845c29de6c8292ffd502f6719da60efca0.tar.gz
android_external_libxml2-a37aab845c29de6c8292ffd502f6719da60efca0.tar.bz2
android_external_libxml2-a37aab845c29de6c8292ffd502f6719da60efca0.zip
applied a patch from Gman for building docs applied a patch from Gary
* doc/*: applied a patch from Gman for building docs * valid.c xmllint.c include/libxml/valid.h: applied a patch from Gary Pennington to provide an allocator for xmlValidCtxt * xmlreader.c: applied patch from Jacek Konieczny fixing bug #113580 about data not being passed immediately. Daniel
Diffstat (limited to 'include')
-rw-r--r--include/libxml/valid.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/libxml/valid.h b/include/libxml/valid.h
index 4b4f40d2..14234e8a 100644
--- a/include/libxml/valid.h
+++ b/include/libxml/valid.h
@@ -127,6 +127,10 @@ typedef xmlIDTable *xmlIDTablePtr;
typedef struct _xmlHashTable xmlRefTable;
typedef xmlRefTable *xmlRefTablePtr;
+/* Allocate/Release Validation Contexts */
+xmlValidCtxtPtr xmlNewValidCtxt(void);
+void xmlFreeValidCtxt(xmlValidCtxtPtr);
+
/* Notation */
xmlNotationPtr xmlAddNotationDecl (xmlValidCtxtPtr ctxt,
xmlDtdPtr dtd,