ADC Home > Reference Library > Reference > Darwin > Miscellaneous User Space API Reference

 


valid.h

Includes:

Introduction



Typedefs


xmlValidityErrorFunc


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.


xmlValidityWarningFunc


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


XML_CTXT_FINISH_DTD_0


#define XML_CTXT_FINISH_DTD_0 0xabcd1234 
Discussion

XML_CTXT_FINISH_DTD_0:

Special value for finishDtd field when embedded in an xmlParserCtxt


XML_CTXT_FINISH_DTD_1


#define XML_CTXT_FINISH_DTD_1 0xabcd1235 
Discussion

XML_CTXT_FINISH_DTD_1:

Special value for finishDtd field when embedded in an xmlParserCtxt

Last Updated: 2006-06-20