pocxxeci 0.30.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of pocxxeci might be problematic. Click here for more details.
- package/LICENSE +19 -0
- package/Makefile +18 -0
- package/README.md +52 -0
- package/binding.gyp +81 -0
- package/index.d.ts +273 -0
- package/index.js +45 -0
- package/lib/bindings.js +1 -0
- package/lib/document.js +122 -0
- package/lib/element.js +82 -0
- package/lib/sax_parser.js +38 -0
- package/package.json +70 -0
- package/src/html_document.cc +7 -0
- package/src/html_document.h +18 -0
- package/src/libxmljs.cc +252 -0
- package/src/libxmljs.h +53 -0
- package/src/xml_attribute.cc +173 -0
- package/src/xml_attribute.h +40 -0
- package/src/xml_comment.cc +117 -0
- package/src/xml_comment.h +30 -0
- package/src/xml_document.cc +810 -0
- package/src/xml_document.h +67 -0
- package/src/xml_element.cc +565 -0
- package/src/xml_element.h +61 -0
- package/src/xml_namespace.cc +158 -0
- package/src/xml_namespace.h +39 -0
- package/src/xml_node.cc +761 -0
- package/src/xml_node.h +73 -0
- package/src/xml_pi.cc +161 -0
- package/src/xml_pi.h +34 -0
- package/src/xml_sax_parser.cc +424 -0
- package/src/xml_sax_parser.h +73 -0
- package/src/xml_syntax_error.cc +66 -0
- package/src/xml_syntax_error.h +25 -0
- package/src/xml_text.cc +320 -0
- package/src/xml_text.h +48 -0
- package/src/xml_textwriter.cc +315 -0
- package/src/xml_textwriter.h +62 -0
- package/src/xml_xpath_context.cc +70 -0
- package/src/xml_xpath_context.h +23 -0
- package/vendor/libxml/Copyright +23 -0
- package/vendor/libxml/DOCBparser.c +305 -0
- package/vendor/libxml/HTMLparser.c +7287 -0
- package/vendor/libxml/HTMLtree.c +1200 -0
- package/vendor/libxml/Makefile +2983 -0
- package/vendor/libxml/SAX.c +180 -0
- package/vendor/libxml/SAX2.c +3036 -0
- package/vendor/libxml/buf.c +1351 -0
- package/vendor/libxml/buf.h +72 -0
- package/vendor/libxml/c14n.c +2234 -0
- package/vendor/libxml/catalog.c +3828 -0
- package/vendor/libxml/chvalid.c +336 -0
- package/vendor/libxml/config.h +294 -0
- package/vendor/libxml/config.h.gch +0 -0
- package/vendor/libxml/debugXML.c +3423 -0
- package/vendor/libxml/dict.c +1298 -0
- package/vendor/libxml/elfgcchack.h +17818 -0
- package/vendor/libxml/enc.h +32 -0
- package/vendor/libxml/encoding.c +3975 -0
- package/vendor/libxml/entities.c +1163 -0
- package/vendor/libxml/error.c +998 -0
- package/vendor/libxml/globals.c +1126 -0
- package/vendor/libxml/hash.c +1146 -0
- package/vendor/libxml/include/libxml/DOCBparser.h +96 -0
- package/vendor/libxml/include/libxml/HTMLparser.h +306 -0
- package/vendor/libxml/include/libxml/HTMLtree.h +147 -0
- package/vendor/libxml/include/libxml/Makefile +725 -0
- package/vendor/libxml/include/libxml/Makefile.am +54 -0
- package/vendor/libxml/include/libxml/Makefile.in +725 -0
- package/vendor/libxml/include/libxml/SAX.h +173 -0
- package/vendor/libxml/include/libxml/SAX2.h +178 -0
- package/vendor/libxml/include/libxml/c14n.h +128 -0
- package/vendor/libxml/include/libxml/catalog.h +182 -0
- package/vendor/libxml/include/libxml/chvalid.h +230 -0
- package/vendor/libxml/include/libxml/debugXML.h +217 -0
- package/vendor/libxml/include/libxml/dict.h +79 -0
- package/vendor/libxml/include/libxml/encoding.h +245 -0
- package/vendor/libxml/include/libxml/entities.h +151 -0
- package/vendor/libxml/include/libxml/globals.h +508 -0
- package/vendor/libxml/include/libxml/hash.h +236 -0
- package/vendor/libxml/include/libxml/list.h +137 -0
- package/vendor/libxml/include/libxml/nanoftp.h +163 -0
- package/vendor/libxml/include/libxml/nanohttp.h +81 -0
- package/vendor/libxml/include/libxml/parser.h +1243 -0
- package/vendor/libxml/include/libxml/parserInternals.h +644 -0
- package/vendor/libxml/include/libxml/pattern.h +100 -0
- package/vendor/libxml/include/libxml/relaxng.h +217 -0
- package/vendor/libxml/include/libxml/schemasInternals.h +958 -0
- package/vendor/libxml/include/libxml/schematron.h +142 -0
- package/vendor/libxml/include/libxml/threads.h +89 -0
- package/vendor/libxml/include/libxml/tree.h +1311 -0
- package/vendor/libxml/include/libxml/uri.h +94 -0
- package/vendor/libxml/include/libxml/valid.h +458 -0
- package/vendor/libxml/include/libxml/xinclude.h +129 -0
- package/vendor/libxml/include/libxml/xlink.h +189 -0
- package/vendor/libxml/include/libxml/xmlIO.h +368 -0
- package/vendor/libxml/include/libxml/xmlautomata.h +146 -0
- package/vendor/libxml/include/libxml/xmlerror.h +945 -0
- package/vendor/libxml/include/libxml/xmlexports.h +77 -0
- package/vendor/libxml/include/libxml/xmlmemory.h +224 -0
- package/vendor/libxml/include/libxml/xmlmodule.h +57 -0
- package/vendor/libxml/include/libxml/xmlreader.h +428 -0
- package/vendor/libxml/include/libxml/xmlregexp.h +222 -0
- package/vendor/libxml/include/libxml/xmlsave.h +88 -0
- package/vendor/libxml/include/libxml/xmlschemas.h +246 -0
- package/vendor/libxml/include/libxml/xmlschemastypes.h +151 -0
- package/vendor/libxml/include/libxml/xmlstring.h +140 -0
- package/vendor/libxml/include/libxml/xmlunicode.h +202 -0
- package/vendor/libxml/include/libxml/xmlversion.h +484 -0
- package/vendor/libxml/include/libxml/xmlwin32version.h +239 -0
- package/vendor/libxml/include/libxml/xmlwriter.h +488 -0
- package/vendor/libxml/include/libxml/xpath.h +564 -0
- package/vendor/libxml/include/libxml/xpathInternals.h +632 -0
- package/vendor/libxml/include/libxml/xpointer.h +114 -0
- package/vendor/libxml/include/win32config.h +122 -0
- package/vendor/libxml/include/wsockcompat.h +54 -0
- package/vendor/libxml/legacy.c +1343 -0
- package/vendor/libxml/libxml.h +134 -0
- package/vendor/libxml/list.c +779 -0
- package/vendor/libxml/nanoftp.c +2118 -0
- package/vendor/libxml/nanohttp.c +1899 -0
- package/vendor/libxml/parser.c +15553 -0
- package/vendor/libxml/parserInternals.c +2164 -0
- package/vendor/libxml/pattern.c +2621 -0
- package/vendor/libxml/relaxng.c +11101 -0
- package/vendor/libxml/rngparser.c +1595 -0
- package/vendor/libxml/runsuite.c +1157 -0
- package/vendor/libxml/save.h +36 -0
- package/vendor/libxml/schematron.c +1787 -0
- package/vendor/libxml/threads.c +1049 -0
- package/vendor/libxml/timsort.h +601 -0
- package/vendor/libxml/tree.c +10183 -0
- package/vendor/libxml/trio.c +6895 -0
- package/vendor/libxml/trio.h +230 -0
- package/vendor/libxml/triodef.h +228 -0
- package/vendor/libxml/trionan.c +914 -0
- package/vendor/libxml/trionan.h +84 -0
- package/vendor/libxml/triop.h +150 -0
- package/vendor/libxml/triostr.c +2112 -0
- package/vendor/libxml/triostr.h +144 -0
- package/vendor/libxml/uri.c +2561 -0
- package/vendor/libxml/valid.c +7138 -0
- package/vendor/libxml/xinclude.c +2657 -0
- package/vendor/libxml/xlink.c +183 -0
- package/vendor/libxml/xmlIO.c +4135 -0
- package/vendor/libxml/xmlcatalog.c +624 -0
- package/vendor/libxml/xmllint.c +3796 -0
- package/vendor/libxml/xmlmemory.c +1163 -0
- package/vendor/libxml/xmlmodule.c +468 -0
- package/vendor/libxml/xmlreader.c +6033 -0
- package/vendor/libxml/xmlregexp.c +8271 -0
- package/vendor/libxml/xmlsave.c +2735 -0
- package/vendor/libxml/xmlschemas.c +29173 -0
- package/vendor/libxml/xmlschemastypes.c +6276 -0
- package/vendor/libxml/xmlstring.c +1050 -0
- package/vendor/libxml/xmlunicode.c +3179 -0
- package/vendor/libxml/xmlwriter.c +4738 -0
- package/vendor/libxml/xpath.c +14734 -0
- package/vendor/libxml/xpointer.c +2969 -0
- package/vendor/libxml/xzlib.c +815 -0
- package/vendor/libxml/xzlib.h +19 -0
@@ -0,0 +1,77 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: macros for marking symbols as exportable/importable.
|
3
|
+
* Description: macros for marking symbols as exportable/importable.
|
4
|
+
*
|
5
|
+
* Copy: See Copyright for the status of this software.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#ifndef __XML_EXPORTS_H__
|
9
|
+
#define __XML_EXPORTS_H__
|
10
|
+
|
11
|
+
#if defined(_WIN32) || defined(__CYGWIN__)
|
12
|
+
/** DOC_DISABLE */
|
13
|
+
|
14
|
+
#ifdef LIBXML_STATIC
|
15
|
+
#define XMLPUBLIC
|
16
|
+
#elif defined(IN_LIBXML)
|
17
|
+
#define XMLPUBLIC __declspec(dllexport)
|
18
|
+
#else
|
19
|
+
#define XMLPUBLIC __declspec(dllimport)
|
20
|
+
#endif
|
21
|
+
|
22
|
+
#if defined(LIBXML_FASTCALL)
|
23
|
+
#define XMLCALL __fastcall
|
24
|
+
#else
|
25
|
+
#define XMLCALL __cdecl
|
26
|
+
#endif
|
27
|
+
#define XMLCDECL __cdecl
|
28
|
+
|
29
|
+
/** DOC_ENABLE */
|
30
|
+
#else /* not Windows */
|
31
|
+
|
32
|
+
/**
|
33
|
+
* XMLPUBLIC:
|
34
|
+
*
|
35
|
+
* Macro which declares a public symbol
|
36
|
+
*/
|
37
|
+
#define XMLPUBLIC
|
38
|
+
|
39
|
+
/**
|
40
|
+
* XMLCALL:
|
41
|
+
*
|
42
|
+
* Macro which declares the calling convention for exported functions
|
43
|
+
*/
|
44
|
+
#define XMLCALL
|
45
|
+
|
46
|
+
/**
|
47
|
+
* XMLCDECL:
|
48
|
+
*
|
49
|
+
* Macro which declares the calling convention for exported functions that
|
50
|
+
* use '...'.
|
51
|
+
*/
|
52
|
+
#define XMLCDECL
|
53
|
+
|
54
|
+
#endif /* platform switch */
|
55
|
+
|
56
|
+
/*
|
57
|
+
* XMLPUBFUN:
|
58
|
+
*
|
59
|
+
* Macro which declares an exportable function
|
60
|
+
*/
|
61
|
+
#define XMLPUBFUN XMLPUBLIC
|
62
|
+
|
63
|
+
/**
|
64
|
+
* XMLPUBVAR:
|
65
|
+
*
|
66
|
+
* Macro which declares an exportable variable
|
67
|
+
*/
|
68
|
+
#define XMLPUBVAR XMLPUBLIC extern
|
69
|
+
|
70
|
+
/* Compatibility */
|
71
|
+
#if !defined(LIBXML_DLL_IMPORT)
|
72
|
+
#define LIBXML_DLL_IMPORT XMLPUBVAR
|
73
|
+
#endif
|
74
|
+
|
75
|
+
#endif /* __XML_EXPORTS_H__ */
|
76
|
+
|
77
|
+
|
@@ -0,0 +1,224 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: interface for the memory allocator
|
3
|
+
* Description: provides interfaces for the memory allocator,
|
4
|
+
* including debugging capabilities.
|
5
|
+
*
|
6
|
+
* Copy: See Copyright for the status of this software.
|
7
|
+
*
|
8
|
+
* Author: Daniel Veillard
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
#ifndef __DEBUG_MEMORY_ALLOC__
|
13
|
+
#define __DEBUG_MEMORY_ALLOC__
|
14
|
+
|
15
|
+
#include <stdio.h>
|
16
|
+
#include <libxml/xmlversion.h>
|
17
|
+
|
18
|
+
/**
|
19
|
+
* DEBUG_MEMORY:
|
20
|
+
*
|
21
|
+
* DEBUG_MEMORY replaces the allocator with a collect and debug
|
22
|
+
* shell to the libc allocator.
|
23
|
+
* DEBUG_MEMORY should only be activated when debugging
|
24
|
+
* libxml i.e. if libxml has been configured with --with-debug-mem too.
|
25
|
+
*/
|
26
|
+
/* #define DEBUG_MEMORY_FREED */
|
27
|
+
/* #define DEBUG_MEMORY_LOCATION */
|
28
|
+
|
29
|
+
#ifdef DEBUG
|
30
|
+
#ifndef DEBUG_MEMORY
|
31
|
+
#define DEBUG_MEMORY
|
32
|
+
#endif
|
33
|
+
#endif
|
34
|
+
|
35
|
+
/**
|
36
|
+
* DEBUG_MEMORY_LOCATION:
|
37
|
+
*
|
38
|
+
* DEBUG_MEMORY_LOCATION should be activated only when debugging
|
39
|
+
* libxml i.e. if libxml has been configured with --with-debug-mem too.
|
40
|
+
*/
|
41
|
+
#ifdef DEBUG_MEMORY_LOCATION
|
42
|
+
#endif
|
43
|
+
|
44
|
+
#ifdef __cplusplus
|
45
|
+
extern "C" {
|
46
|
+
#endif
|
47
|
+
|
48
|
+
/*
|
49
|
+
* The XML memory wrapper support 4 basic overloadable functions.
|
50
|
+
*/
|
51
|
+
/**
|
52
|
+
* xmlFreeFunc:
|
53
|
+
* @mem: an already allocated block of memory
|
54
|
+
*
|
55
|
+
* Signature for a free() implementation.
|
56
|
+
*/
|
57
|
+
typedef void (XMLCALL *xmlFreeFunc)(void *mem);
|
58
|
+
/**
|
59
|
+
* xmlMallocFunc:
|
60
|
+
* @size: the size requested in bytes
|
61
|
+
*
|
62
|
+
* Signature for a malloc() implementation.
|
63
|
+
*
|
64
|
+
* Returns a pointer to the newly allocated block or NULL in case of error.
|
65
|
+
*/
|
66
|
+
typedef void *(LIBXML_ATTR_ALLOC_SIZE(1) XMLCALL *xmlMallocFunc)(size_t size);
|
67
|
+
|
68
|
+
/**
|
69
|
+
* xmlReallocFunc:
|
70
|
+
* @mem: an already allocated block of memory
|
71
|
+
* @size: the new size requested in bytes
|
72
|
+
*
|
73
|
+
* Signature for a realloc() implementation.
|
74
|
+
*
|
75
|
+
* Returns a pointer to the newly reallocated block or NULL in case of error.
|
76
|
+
*/
|
77
|
+
typedef void *(XMLCALL *xmlReallocFunc)(void *mem, size_t size);
|
78
|
+
|
79
|
+
/**
|
80
|
+
* xmlStrdupFunc:
|
81
|
+
* @str: a zero terminated string
|
82
|
+
*
|
83
|
+
* Signature for an strdup() implementation.
|
84
|
+
*
|
85
|
+
* Returns the copy of the string or NULL in case of error.
|
86
|
+
*/
|
87
|
+
typedef char *(XMLCALL *xmlStrdupFunc)(const char *str);
|
88
|
+
|
89
|
+
/*
|
90
|
+
* The 4 interfaces used for all memory handling within libxml.
|
91
|
+
LIBXML_DLL_IMPORT xmlFreeFunc xmlFree;
|
92
|
+
LIBXML_DLL_IMPORT xmlMallocFunc xmlMalloc;
|
93
|
+
LIBXML_DLL_IMPORT xmlMallocFunc xmlMallocAtomic;
|
94
|
+
LIBXML_DLL_IMPORT xmlReallocFunc xmlRealloc;
|
95
|
+
LIBXML_DLL_IMPORT xmlStrdupFunc xmlMemStrdup;
|
96
|
+
*/
|
97
|
+
|
98
|
+
/*
|
99
|
+
* The way to overload the existing functions.
|
100
|
+
* The xmlGc function have an extra entry for atomic block
|
101
|
+
* allocations useful for garbage collected memory allocators
|
102
|
+
*/
|
103
|
+
XMLPUBFUN int XMLCALL
|
104
|
+
xmlMemSetup (xmlFreeFunc freeFunc,
|
105
|
+
xmlMallocFunc mallocFunc,
|
106
|
+
xmlReallocFunc reallocFunc,
|
107
|
+
xmlStrdupFunc strdupFunc);
|
108
|
+
XMLPUBFUN int XMLCALL
|
109
|
+
xmlMemGet (xmlFreeFunc *freeFunc,
|
110
|
+
xmlMallocFunc *mallocFunc,
|
111
|
+
xmlReallocFunc *reallocFunc,
|
112
|
+
xmlStrdupFunc *strdupFunc);
|
113
|
+
XMLPUBFUN int XMLCALL
|
114
|
+
xmlGcMemSetup (xmlFreeFunc freeFunc,
|
115
|
+
xmlMallocFunc mallocFunc,
|
116
|
+
xmlMallocFunc mallocAtomicFunc,
|
117
|
+
xmlReallocFunc reallocFunc,
|
118
|
+
xmlStrdupFunc strdupFunc);
|
119
|
+
XMLPUBFUN int XMLCALL
|
120
|
+
xmlGcMemGet (xmlFreeFunc *freeFunc,
|
121
|
+
xmlMallocFunc *mallocFunc,
|
122
|
+
xmlMallocFunc *mallocAtomicFunc,
|
123
|
+
xmlReallocFunc *reallocFunc,
|
124
|
+
xmlStrdupFunc *strdupFunc);
|
125
|
+
|
126
|
+
/*
|
127
|
+
* Initialization of the memory layer.
|
128
|
+
*/
|
129
|
+
XMLPUBFUN int XMLCALL
|
130
|
+
xmlInitMemory (void);
|
131
|
+
|
132
|
+
/*
|
133
|
+
* Cleanup of the memory layer.
|
134
|
+
*/
|
135
|
+
XMLPUBFUN void XMLCALL
|
136
|
+
xmlCleanupMemory (void);
|
137
|
+
/*
|
138
|
+
* These are specific to the XML debug memory wrapper.
|
139
|
+
*/
|
140
|
+
XMLPUBFUN int XMLCALL
|
141
|
+
xmlMemUsed (void);
|
142
|
+
XMLPUBFUN int XMLCALL
|
143
|
+
xmlMemBlocks (void);
|
144
|
+
XMLPUBFUN void XMLCALL
|
145
|
+
xmlMemDisplay (FILE *fp);
|
146
|
+
XMLPUBFUN void XMLCALL
|
147
|
+
xmlMemDisplayLast(FILE *fp, long nbBytes);
|
148
|
+
XMLPUBFUN void XMLCALL
|
149
|
+
xmlMemShow (FILE *fp, int nr);
|
150
|
+
XMLPUBFUN void XMLCALL
|
151
|
+
xmlMemoryDump (void);
|
152
|
+
XMLPUBFUN void * XMLCALL
|
153
|
+
xmlMemMalloc (size_t size) LIBXML_ATTR_ALLOC_SIZE(1);
|
154
|
+
XMLPUBFUN void * XMLCALL
|
155
|
+
xmlMemRealloc (void *ptr,size_t size);
|
156
|
+
XMLPUBFUN void XMLCALL
|
157
|
+
xmlMemFree (void *ptr);
|
158
|
+
XMLPUBFUN char * XMLCALL
|
159
|
+
xmlMemoryStrdup (const char *str);
|
160
|
+
XMLPUBFUN void * XMLCALL
|
161
|
+
xmlMallocLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
|
162
|
+
XMLPUBFUN void * XMLCALL
|
163
|
+
xmlReallocLoc (void *ptr, size_t size, const char *file, int line);
|
164
|
+
XMLPUBFUN void * XMLCALL
|
165
|
+
xmlMallocAtomicLoc (size_t size, const char *file, int line) LIBXML_ATTR_ALLOC_SIZE(1);
|
166
|
+
XMLPUBFUN char * XMLCALL
|
167
|
+
xmlMemStrdupLoc (const char *str, const char *file, int line);
|
168
|
+
|
169
|
+
|
170
|
+
#ifdef DEBUG_MEMORY_LOCATION
|
171
|
+
/**
|
172
|
+
* xmlMalloc:
|
173
|
+
* @size: number of bytes to allocate
|
174
|
+
*
|
175
|
+
* Wrapper for the malloc() function used in the XML library.
|
176
|
+
*
|
177
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
178
|
+
*/
|
179
|
+
#define xmlMalloc(size) xmlMallocLoc((size), __FILE__, __LINE__)
|
180
|
+
/**
|
181
|
+
* xmlMallocAtomic:
|
182
|
+
* @size: number of bytes to allocate
|
183
|
+
*
|
184
|
+
* Wrapper for the malloc() function used in the XML library for allocation
|
185
|
+
* of block not containing pointers to other areas.
|
186
|
+
*
|
187
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
188
|
+
*/
|
189
|
+
#define xmlMallocAtomic(size) xmlMallocAtomicLoc((size), __FILE__, __LINE__)
|
190
|
+
/**
|
191
|
+
* xmlRealloc:
|
192
|
+
* @ptr: pointer to the existing allocated area
|
193
|
+
* @size: number of bytes to allocate
|
194
|
+
*
|
195
|
+
* Wrapper for the realloc() function used in the XML library.
|
196
|
+
*
|
197
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
198
|
+
*/
|
199
|
+
#define xmlRealloc(ptr, size) xmlReallocLoc((ptr), (size), __FILE__, __LINE__)
|
200
|
+
/**
|
201
|
+
* xmlMemStrdup:
|
202
|
+
* @str: pointer to the existing string
|
203
|
+
*
|
204
|
+
* Wrapper for the strdup() function, xmlStrdup() is usually preferred.
|
205
|
+
*
|
206
|
+
* Returns the pointer to the allocated area or NULL in case of error.
|
207
|
+
*/
|
208
|
+
#define xmlMemStrdup(str) xmlMemStrdupLoc((str), __FILE__, __LINE__)
|
209
|
+
|
210
|
+
#endif /* DEBUG_MEMORY_LOCATION */
|
211
|
+
|
212
|
+
#ifdef __cplusplus
|
213
|
+
}
|
214
|
+
#endif /* __cplusplus */
|
215
|
+
|
216
|
+
#ifndef __XML_GLOBALS_H
|
217
|
+
#ifndef __XML_THREADS_H__
|
218
|
+
#include <libxml/threads.h>
|
219
|
+
#include <libxml/globals.h>
|
220
|
+
#endif
|
221
|
+
#endif
|
222
|
+
|
223
|
+
#endif /* __DEBUG_MEMORY_ALLOC__ */
|
224
|
+
|
@@ -0,0 +1,57 @@
|
|
1
|
+
/*
|
2
|
+
* Summary: dynamic module loading
|
3
|
+
* Description: basic API for dynamic module loading, used by
|
4
|
+
* libexslt added in 2.6.17
|
5
|
+
*
|
6
|
+
* Copy: See Copyright for the status of this software.
|
7
|
+
*
|
8
|
+
* Author: Joel W. Reed
|
9
|
+
*/
|
10
|
+
|
11
|
+
#ifndef __XML_MODULE_H__
|
12
|
+
#define __XML_MODULE_H__
|
13
|
+
|
14
|
+
#include <libxml/xmlversion.h>
|
15
|
+
|
16
|
+
#ifdef LIBXML_MODULES_ENABLED
|
17
|
+
|
18
|
+
#ifdef __cplusplus
|
19
|
+
extern "C" {
|
20
|
+
#endif
|
21
|
+
|
22
|
+
/**
|
23
|
+
* xmlModulePtr:
|
24
|
+
*
|
25
|
+
* A handle to a dynamically loaded module
|
26
|
+
*/
|
27
|
+
typedef struct _xmlModule xmlModule;
|
28
|
+
typedef xmlModule *xmlModulePtr;
|
29
|
+
|
30
|
+
/**
|
31
|
+
* xmlModuleOption:
|
32
|
+
*
|
33
|
+
* enumeration of options that can be passed down to xmlModuleOpen()
|
34
|
+
*/
|
35
|
+
typedef enum {
|
36
|
+
XML_MODULE_LAZY = 1, /* lazy binding */
|
37
|
+
XML_MODULE_LOCAL= 2 /* local binding */
|
38
|
+
} xmlModuleOption;
|
39
|
+
|
40
|
+
XMLPUBFUN xmlModulePtr XMLCALL xmlModuleOpen (const char *filename,
|
41
|
+
int options);
|
42
|
+
|
43
|
+
XMLPUBFUN int XMLCALL xmlModuleSymbol (xmlModulePtr module,
|
44
|
+
const char* name,
|
45
|
+
void **result);
|
46
|
+
|
47
|
+
XMLPUBFUN int XMLCALL xmlModuleClose (xmlModulePtr module);
|
48
|
+
|
49
|
+
XMLPUBFUN int XMLCALL xmlModuleFree (xmlModulePtr module);
|
50
|
+
|
51
|
+
#ifdef __cplusplus
|
52
|
+
}
|
53
|
+
#endif
|
54
|
+
|
55
|
+
#endif /* LIBXML_MODULES_ENABLED */
|
56
|
+
|
57
|
+
#endif /*__XML_MODULE_H__ */
|