mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

This allows to report the reason why opening a file failed to the parser context and improve error messages. Now we can also remove the stat call before opening a file.
25 lines
711 B
C
25 lines
711 B
C
#ifndef XML_IO_H_PRIVATE__
|
|
#define XML_IO_H_PRIVATE__
|
|
|
|
#include <libxml/encoding.h>
|
|
#include <libxml/tree.h>
|
|
#include <libxml/xmlversion.h>
|
|
|
|
XML_HIDDEN int
|
|
__xmlIOErr(int domain, int code, const char *extra);
|
|
XML_HIDDEN void
|
|
xmlLoaderErr(xmlParserCtxtPtr ctxt, int code, const char *filename);
|
|
|
|
XML_HIDDEN int
|
|
xmlParserInputBufferCreateFilenameSafe(const char *URI, xmlCharEncoding enc,
|
|
xmlParserInputBufferPtr *out);
|
|
XML_HIDDEN xmlParserInputBufferPtr
|
|
xmlParserInputBufferCreateString(const xmlChar *str);
|
|
|
|
#ifdef LIBXML_OUTPUT_ENABLED
|
|
XML_HIDDEN xmlOutputBufferPtr
|
|
xmlAllocOutputBufferInternal(xmlCharEncodingHandlerPtr encoder);
|
|
#endif
|
|
|
|
#endif /* XML_IO_H_PRIVATE__ */
|