mscms: Fix double free on error path in EnumColorProfilesA (scan-build).
[wine.git] / libs / xml2 / save.h
blob192b6741335800e62d55d92dd69bb87a42465f5f
1 /*
2 * Summary: Internal Interfaces for saving in libxml2
3 * Description: this module describes a few interfaces which were
4 * added along with the API changes in 2.9.0
5 * those are private routines at this point
7 * Copy: See Copyright for the status of this software.
9 * Author: Daniel Veillard
12 #ifndef __XML_SAVE_H__
13 #define __XML_SAVE_H__
15 #include <libxml/tree.h>
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
21 #ifdef LIBXML_OUTPUT_ENABLED
22 void xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
23 xmlAttrPtr attr, const xmlChar * string);
24 void xmlBufDumpNotationTable(xmlBufPtr buf, xmlNotationTablePtr table);
25 void xmlBufDumpElementDecl(xmlBufPtr buf, xmlElementPtr elem);
26 void xmlBufDumpAttributeDecl(xmlBufPtr buf, xmlAttributePtr attr);
27 void xmlBufDumpEntityDecl(xmlBufPtr buf, xmlEntityPtr ent);
28 #endif
30 xmlChar *xmlEncodeAttributeEntities(xmlDocPtr doc, const xmlChar *input);
32 #ifdef __cplusplus
34 #endif
35 #endif /* __XML_SAVE_H__ */