Last change
on this file since 107935 was 105420, checked in by vboxsync, 7 months ago |
libxml2-2.12.6: Applied and adjusted our libxml2 changes to 2.12.6. bugref:10730
|
File size:
999 bytes
|
Line | |
---|
1 | #ifndef XML_IO_H_PRIVATE__
|
---|
2 | #define XML_IO_H_PRIVATE__
|
---|
3 |
|
---|
4 | #include <libxml/encoding.h>
|
---|
5 | #include <libxml/tree.h>
|
---|
6 | #include <libxml/xmlversion.h>
|
---|
7 |
|
---|
8 | XML_HIDDEN void
|
---|
9 | xmlInitIOCallbacks(void);
|
---|
10 |
|
---|
11 | XML_HIDDEN int
|
---|
12 | __xmlIOErr(int domain, int code, const char *extra);
|
---|
13 |
|
---|
14 | XML_HIDDEN int
|
---|
15 | xmlNoNetExists(const char *filename);
|
---|
16 |
|
---|
17 | XML_HIDDEN int
|
---|
18 | xmlParserInputBufferCreateFilenameSafe(const char *URI, xmlCharEncoding enc,
|
---|
19 | xmlParserInputBufferPtr *out);
|
---|
20 |
|
---|
21 | XML_HIDDEN xmlParserInputBufferPtr
|
---|
22 | xmlNewInputBufferString(const char *str, int flags);
|
---|
23 | XML_HIDDEN xmlParserInputBufferPtr
|
---|
24 | xmlNewInputBufferMemory(const void *mem, size_t size, int flags,
|
---|
25 | xmlCharEncoding enc);
|
---|
26 |
|
---|
27 | #ifdef LIBXML_OUTPUT_ENABLED
|
---|
28 | XML_HIDDEN xmlOutputBufferPtr
|
---|
29 | xmlAllocOutputBufferInternal(xmlCharEncodingHandlerPtr encoder);
|
---|
30 | XML_HIDDEN void
|
---|
31 | xmlOutputBufferWriteQuotedString(xmlOutputBufferPtr buf,
|
---|
32 | const xmlChar *string);
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #endif /* XML_IO_H_PRIVATE__ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.