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

Introduce xmlXPathSetErrorHandler allowing to set a structured error handler for an XPath context. Remove arguments from memory error handlers. Use xmlRaiseMemoryError. Remove TODO, STRANGE and CHECK_CTXT macros. Remove remaining uses of xmlGenericError.
17 lines
331 B
C
17 lines
331 B
C
#ifndef XML_XPATH_H_PRIVATE__
|
|
#define XML_XPATH_H_PRIVATE__
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
XML_HIDDEN void
|
|
xmlInitXPathInternal(void);
|
|
|
|
#ifdef LIBXML_XPATH_ENABLED
|
|
XML_HIDDEN void
|
|
xmlXPathErrMemory(xmlXPathContextPtr ctxt);
|
|
XML_HIDDEN void
|
|
xmlXPathPErrMemory(xmlXPathParserContextPtr ctxt);
|
|
#endif
|
|
|
|
#endif /* XML_XPATH_H_PRIVATE__ */
|