blob: 00421f95712673a3ab55429f207e31fb0389219b [file] [log] [blame]
Daniel Veillardd2897fd2002-01-30 16:37:32 +00001#include <libxml/tree.h>
2#include <libxml/parser.h>
3#include <libxml/parserInternals.h>
4#include <libxml/catalog.h>
5#include <libxml/threads.h>
6#include <libxml/nanoftp.h>
7#include <libxml/nanohttp.h>
8#include <libxml/uri.h>
9#include <libxml/xpath.h>
10#include <libxml/xpathInternals.h>
11#include <libxml/debugXML.h>
Daniel Veillard96fe0952002-01-30 20:52:23 +000012#include <libxml/HTMLparser.h>
13#include <libxml/HTMLtree.h>
14#include <libxml/xinclude.h>
15
16#define PyxmlNode_Get(v) (((PyxmlNode_Object *)(v))->obj)
17
18typedef struct {
19 PyObject_HEAD
20 xmlNodePtr obj;
21} PyxmlNode_Object;
Daniel Veillardd2897fd2002-01-30 16:37:32 +000022
23PyObject * libxml_intWrap(int val);
24PyObject * libxml_xmlCharPtrWrap(const xmlChar *str);
25PyObject * libxml_charPtrWrap(const char *str);
26PyObject * libxml_xmlDocPtrWrap(xmlDocPtr doc);
27PyObject * libxml_xmlNodePtrWrap(xmlNodePtr node);
28PyObject * libxml_xmlAttrPtrWrap(xmlAttrPtr attr);
Daniel Veillard96fe0952002-01-30 20:52:23 +000029PyObject * libxml_doubleWrap(double val);
30