123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- #ifndef __XML_C14N_H__
- #define __XML_C14N_H__
- #ifdef LIBXML_C14N_ENABLED
- #ifdef LIBXML_OUTPUT_ENABLED
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <libxml/xmlversion.h>
- #include <libxml/tree.h>
- #include <libxml/xpath.h>
- typedef enum {
- XML_C14N_1_0 = 0,
- XML_C14N_EXCLUSIVE_1_0 = 1,
- XML_C14N_1_1 = 2
- } xmlC14NMode;
- XMLPUBFUN int XMLCALL
- xmlC14NDocSaveTo (xmlDocPtr doc,
- xmlNodeSetPtr nodes,
- int mode,
- xmlChar **inclusive_ns_prefixes,
- int with_comments,
- xmlOutputBufferPtr buf);
- XMLPUBFUN int XMLCALL
- xmlC14NDocDumpMemory (xmlDocPtr doc,
- xmlNodeSetPtr nodes,
- int mode,
- xmlChar **inclusive_ns_prefixes,
- int with_comments,
- xmlChar **doc_txt_ptr);
- XMLPUBFUN int XMLCALL
- xmlC14NDocSave (xmlDocPtr doc,
- xmlNodeSetPtr nodes,
- int mode,
- xmlChar **inclusive_ns_prefixes,
- int with_comments,
- const char* filename,
- int compression);
- typedef int (*xmlC14NIsVisibleCallback) (void* user_data,
- xmlNodePtr node,
- xmlNodePtr parent);
- XMLPUBFUN int XMLCALL
- xmlC14NExecute (xmlDocPtr doc,
- xmlC14NIsVisibleCallback is_visible_callback,
- void* user_data,
- int mode,
- xmlChar **inclusive_ns_prefixes,
- int with_comments,
- xmlOutputBufferPtr buf);
- #ifdef __cplusplus
- }
- #endif
- #endif
- #endif
- #endif
|