mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
18 lines
440 B
C
18 lines
440 B
C
#ifndef XML_SAVE_H_PRIVATE__
|
|
#define XML_SAVE_H_PRIVATE__
|
|
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xmlversion.h>
|
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
|
|
XML_HIDDEN void
|
|
xmlBufAttrSerializeTxtContent(xmlBufPtr buf, xmlDocPtr doc,
|
|
xmlAttrPtr attr, const xmlChar * string);
|
|
XML_HIDDEN void
|
|
xmlNsListDumpOutput(xmlOutputBufferPtr buf, xmlNsPtr cur);
|
|
|
|
#endif /* LIBXML_OUTPUT_ENABLED */
|
|
|
|
#endif /* XML_SAVE_H_PRIVATE__ */
|