Introduction
Typedefs
typedef void (*xmlValidityErrorFunc) (
void *ctx,
const char *msg,
...);
Discussion
xmlValidityErrorFunc:
@ctx: usually an xmlValidCtxtPtr to a validity error context,
but comes from ctxt->userData (which normally contains such
a pointer); ctxt->userData can be changed by the user.
@msg: the string to format *printf like vararg
@...: remaining arguments to the format
Callback called when a validity error is found. This is a message
oriented function similar to an *printf function.
typedef void (*xmlValidityWarningFunc) (
void *ctx,
const char *msg,
...);
Discussion
xmlValidityWarningFunc:
@ctx: usually an xmlValidCtxtPtr to a validity error context,
but comes from ctxt->userData (which normally contains such
a pointer); ctxt->userData can be changed by the user.
@msg: the string to format *printf like vararg
@...: remaining arguments to the format
Callback called when a validity warning is found. This is a message
oriented function similar to an *printf function.
#defines
#define XML_CTXT_FINISH_DTD_0 0xabcd1234
Discussion
XML_CTXT_FINISH_DTD_0:
Special value for finishDtd field when embedded in an xmlParserCtxt
#define XML_CTXT_FINISH_DTD_1 0xabcd1235
Discussion
XML_CTXT_FINISH_DTD_1:
Special value for finishDtd field when embedded in an xmlParserCtxt
We’re sorry, an error has occurred.
Please try submitting your feedback later.
Thank you for providing feedback!
Your input helps improve our developer documentation.
Last Updated: 2006-06-20