38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <Python.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/tree.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/parser.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/parserInternals.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/catalog.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/threads.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/nanoftp.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/nanohttp.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/uri.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xpath.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xpathInternals.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/debugXML.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/HTMLparser.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/HTMLtree.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xinclude.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xpointer.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xmlunicode.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xmlregexp.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xmlautomata.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xmlreader.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef LIBXML_SCHEMAS_ENABLED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/relaxng.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#include <libxml/xmlschemas.h>
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync/**
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync * ATTRIBUTE_UNUSED:
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync *
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync * Macro used to signal to GCC unused function parameters
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync * Repeated here since the definition is not available when
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync * compiled outside the libxml2 build tree.
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef __GNUC__
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef ATTRIBUTE_UNUSED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#undef ATTRIBUTE_UNUSED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifndef ATTRIBUTE_UNUSED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define ATTRIBUTE_UNUSED __attribute__ ((__unused__))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif /* ATTRIBUTE_UNUSED */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#else
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define ATTRIBUTE_UNUSED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlNode_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlNode_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlNodePtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlNode_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlXPathContext_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlXPathContext_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlXPathContextPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlXPathContext_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlXPathParserContext_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlXPathParserContext_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlXPathParserContextPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlXPathParserContext_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyparserCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyparserCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlParserCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyparserCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyValidCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyValidCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlValidCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyValidCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define Pycatalog_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((Pycatalog_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlCatalogPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} Pycatalog_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef LIBXML_REGEXP_ENABLED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlReg_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlReg_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlRegexpPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlReg_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif /* LIBXML_REGEXP_ENABLED */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlTextReader_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlTextReader_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlTextReaderPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlTextReader_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyxmlTextReaderLocator_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyxmlTextReaderLocator_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlTextReaderLocatorPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyxmlTextReaderLocator_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyURI_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyURI_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlErrorPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyError_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyError_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyError_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlOutputBufferPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyoutputBuffer_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyoutputBuffer_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyoutputBuffer_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlParserInputBufferPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyinputBuffer_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyinputBuffer_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyinputBuffer_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlURIPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyURI_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync/* FILE * have their own internal representation */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (PyFile_Check(v) ? (PyFile_AsFile(v)) : stdout))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef LIBXML_SCHEMAS_ENABLED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlRelaxNGPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyrelaxNgSchema_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyrelaxNgSchema_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyrelaxNgSchema_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlRelaxNGParserCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyrelaxNgParserCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyrelaxNgParserCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyrelaxNgParserCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlRelaxNGValidCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PyrelaxNgValidCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PyrelaxNgValidCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PyrelaxNgValidCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlSchemaPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PySchema_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PySchema_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PySchema_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlSchemaParserCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PySchemaParserCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PySchemaParserCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PySchemaParserCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsynctypedef struct {
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync PyObject_HEAD
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync xmlSchemaValidCtxtPtr obj;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync} PySchemaValidCtxt_Object;
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#define PySchemaValidCtxt_Get(v) (((v) == Py_None) ? NULL : \
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync (((PySchemaValidCtxt_Object *)(v))->obj))
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif /* LIBXML_SCHEMAS_ENABLED */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_intWrap(int val);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_longWrap(long val);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlCharPtrWrap(xmlChar *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_constxmlCharPtrWrap(const xmlChar *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_charPtrWrap(char *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_constcharPtrWrap(const char *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_charPtrConstWrap(const char *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlCharPtrConstWrap(const xmlChar *str);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlDocPtrWrap(xmlDocPtr doc);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlNodePtrWrap(xmlNodePtr node);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlAttrPtrWrap(xmlAttrPtr attr);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlNsPtrWrap(xmlNsPtr ns);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlAttributePtrWrap(xmlAttributePtr ns);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlElementPtrWrap(xmlElementPtr ns);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_doubleWrap(double val);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlXPathContextPtrWrap(xmlXPathContextPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlParserCtxtPtrWrap(xmlParserCtxtPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlXPathParserContextPtrWrap(xmlXPathParserContextPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlXPathObjectPtrWrap(xmlXPathObjectPtr obj);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlValidCtxtPtrWrap(xmlValidCtxtPtr valid);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlCatalogPtrWrap(xmlCatalogPtr obj);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlURIPtrWrap(xmlURIPtr uri);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlOutputBufferPtrWrap(xmlOutputBufferPtr buffer);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlParserInputBufferPtrWrap(xmlParserInputBufferPtr buffer);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef LIBXML_REGEXP_ENABLED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlRegexpPtrWrap(xmlRegexpPtr regexp);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif /* LIBXML_REGEXP_ENABLED */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlTextReaderPtrWrap(xmlTextReaderPtr reader);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlTextReaderLocatorPtrWrap(xmlTextReaderLocatorPtr locator);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncxmlXPathObjectPtr libxml_xmlXPathObjectPtrConvert(PyObject * obj);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#ifdef LIBXML_SCHEMAS_ENABLED
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlRelaxNGPtrWrap(xmlRelaxNGPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlRelaxNGParserCtxtPtrWrap(xmlRelaxNGParserCtxtPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlRelaxNGValidCtxtPtrWrap(xmlRelaxNGValidCtxtPtr valid);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlSchemaPtrWrap(xmlSchemaPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlSchemaParserCtxtPtrWrap(xmlSchemaParserCtxtPtr ctxt);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlSchemaValidCtxtPtrWrap(xmlSchemaValidCtxtPtr valid);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsync#endif /* LIBXML_SCHEMAS_ENABLED */
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlErrorPtrWrap(xmlErrorPtr error);
38ae7e4efe803ea78b6499cd05a394db32623e41vboxsyncPyObject * libxml_xmlSchemaSetValidErrors(PyObject * self, PyObject * args);