aboutsummaryrefslogtreecommitdiffstats
path: root/save.h
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2012-08-10 10:00:18 +0800
committerDaniel Veillard <veillard@redhat.com>2012-08-10 10:00:18 +0800
commit28cc42d06867f46f921ec137b725a124e43936fd (patch)
tree8cfaf2320e39da849b714619078e00f94916642e /save.h
parent3e62adbe39f2083c9c2cd3330c320227818fd361 (diff)
downloadandroid_external_libxml2-28cc42d06867f46f921ec137b725a124e43936fd.tar.gz
android_external_libxml2-28cc42d06867f46f921ec137b725a124e43936fd.tar.bz2
android_external_libxml2-28cc42d06867f46f921ec137b725a124e43936fd.zip
Regenerating docs and API files
Various cleanups * configure.in: force regeneration of APIs in my environment * buf.c buf.h enc.h encoding.c include/libxml/tree.h include/libxml/xmlerror.h save.h tree.c: various comment cleanups pointed by apibuild * doc/apibuild.py: added the 3 new internal headers in the excludes * doc/libxml2-api.xml doc/libxml2-refs.xml: regenerated the API * doc/symbols.xml: listing new entry points for 2.9.0 * doc/devhelp/*: regenerated
Diffstat (limited to 'save.h')
-rw-r--r--save.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/save.h b/save.h
index 26cc51d1..f24f273f 100644
--- a/save.h
+++ b/save.h
@@ -1,9 +1,12 @@
/*
- * save.h: Internal Interfaces for saving
+ * Summary: Internal Interfaces for saving in libxml2
+ * Description: this module describes a few interfaces which were
+ * addded along with the API changes in 2.9.0
+ * those are private routines at this point
*
- * See Copyright for the status of this software.
+ * Copy: See Copyright for the status of this software.
*
- * daniel@veillard.com
+ * Author: Daniel Veillard
*/
#ifndef __XML_SAVE_H__
@@ -15,12 +18,14 @@
extern "C" {
#endif
+#ifdef LIBXML_OUTPUT_ENABLED
void xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
xmlAttrPtr attr, const xmlChar * string);
void xmlBufDumpNotationTable(xmlBufPtr buf, xmlNotationTablePtr table);
void xmlBufDumpElementDecl(xmlBufPtr buf, xmlElementPtr elem);
void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
+#endif
#ifdef __cplusplus
}