Blame src/lxml/includes/c14n.pxd

Packit Service b74dd5
from lxml.includes.tree cimport xmlDoc, xmlOutputBuffer, xmlChar
Packit Service b74dd5
from lxml.includes.xpath cimport xmlNodeSet
Packit Service b74dd5
Packit Service b74dd5
cdef extern from "libxml/c14n.h":
Packit Service b74dd5
    cdef int xmlC14NDocDumpMemory(xmlDoc* doc,
Packit Service b74dd5
                                  xmlNodeSet* nodes,
Packit Service b74dd5
                                  int exclusive,
Packit Service b74dd5
                                  xmlChar** inclusive_ns_prefixes,
Packit Service b74dd5
                                  int with_comments,
Packit Service b74dd5
                                  xmlChar** doc_txt_ptr) nogil
Packit Service b74dd5
Packit Service b74dd5
    cdef int xmlC14NDocSave(xmlDoc* doc,
Packit Service b74dd5
                            xmlNodeSet* nodes,
Packit Service b74dd5
                            int exclusive,
Packit Service b74dd5
                            xmlChar** inclusive_ns_prefixes,
Packit Service b74dd5
                            int with_comments,
Packit Service b74dd5
                            char* filename,
Packit Service b74dd5
                            int compression) nogil
Packit Service b74dd5
Packit Service b74dd5
    cdef int xmlC14NDocSaveTo(xmlDoc* doc,
Packit Service b74dd5
                              xmlNodeSet* nodes,
Packit Service b74dd5
                              int exclusive,
Packit Service b74dd5
                              xmlChar** inclusive_ns_prefixes,
Packit Service b74dd5
                              int with_comments,
Packit Service b74dd5
                              xmlOutputBuffer* buffer) nogil
Packit Service b74dd5