aboutsummaryrefslogtreecommitdiffstats
path: root/include/libxml/xmlIO.h
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2000-01-05 14:46:17 +0000
committerDaniel Veillard <veillard@src.gnome.org>2000-01-05 14:46:17 +0000
commit71b656e06707c733ab02c5bf9bd2754cea678562 (patch)
tree96d73258f3778a88c4069508295a5aac65891512 /include/libxml/xmlIO.h
parent437b87b8cc1970608f7172a98187f2a2eb04179a (diff)
downloadandroid_external_libxml2-71b656e06707c733ab02c5bf9bd2754cea678562.tar.gz
android_external_libxml2-71b656e06707c733ab02c5bf9bd2754cea678562.tar.bz2
android_external_libxml2-71b656e06707c733ab02c5bf9bd2754cea678562.zip
- added xmlRemoveID() and xmlRemoveRef()
- added check and handling when possibly removing an ID - fixed some entities problems - added xmlParseTryOrFinish() - changed the way struct aredeclared to allow gtk-doc to expose those - closed #4960 - fixes to libs detection from Albert Chin-A-Young - preparing 1.8.3 release Daniel
Diffstat (limited to 'include/libxml/xmlIO.h')
-rw-r--r--include/libxml/xmlIO.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/libxml/xmlIO.h b/include/libxml/xmlIO.h
index bf43de25..48bbcbb9 100644
--- a/include/libxml/xmlIO.h
+++ b/include/libxml/xmlIO.h
@@ -18,7 +18,9 @@
extern "C" {
#endif
-typedef struct xmlParserInputBuffer {
+typedef struct _xmlParserInputBuffer xmlParserInputBuffer;
+typedef xmlParserInputBuffer *xmlParserInputBufferPtr;
+struct _xmlParserInputBuffer {
/* Inputs */
FILE *file; /* Input on file handler */
void* gzfile; /* Input on a compressed stream */
@@ -29,9 +31,8 @@ typedef struct xmlParserInputBuffer {
xmlBufferPtr buffer; /* Local buffer encoded in UTF-8 */
-} xmlParserInputBuffer;
+};
-typedef xmlParserInputBuffer *xmlParserInputBufferPtr;
/*
* Interfaces