| Gnome XML Library Reference Manual | |||
|---|---|---|---|
| <<< Previous Page | Home | Up | Next Page >>> |
void xmlParserError (void *ctx, const char *msg, ...); void xmlParserWarning (void *ctx, const char *msg, ...); void xmlParserValidityError (void *ctx, const char *msg, ...); void xmlParserValidityWarning (void *ctx, const char *msg, ...); void xmlParserPrintFileInfo (xmlParserInputPtr input); void xmlParserPrintFileContext (xmlParserInputPtr input); |
void xmlParserError (void *ctx,
const char *msg,
...); |
Display and format an error messages, gives file, line, position and extra parameters.
| ctx : | an XML parser context |
| msg : | the message to display/transmit |
| ... : | extra parameters for the message display |
void xmlParserWarning (void *ctx,
const char *msg,
...); |
Display and format a warning messages, gives file, line, position and extra parameters.
| ctx : | an XML parser context |
| msg : | the message to display/transmit |
| ... : | extra parameters for the message display |
void xmlParserValidityError (void *ctx,
const char *msg,
...); |
Display and format an validity error messages, gives file, line, position and extra parameters.
| ctx : | |
| msg : | |
| ... : |
void xmlParserValidityWarning (void *ctx,
const char *msg,
...); |
Display and format a validity warning messages, gives file, line, position and extra parameters.
| ctx : | |
| msg : | |
| ... : |
void xmlParserPrintFileInfo (xmlParserInputPtr input); |
Displays the associated file and line informations for the current input
| input : | an xmlParserInputPtr input |
void xmlParserPrintFileContext (xmlParserInputPtr input); |
Displays current context within the input content for error tracking
| input : | an xmlParserInputPtr input |