ADC Home > Reference Library > Reference > Darwin > Miscellaneous User Space API Reference
|
extensions.h |
xsltExtInitFunction |
typedef void * (*xsltExtInitFunction) ( xsltTransformContextPtr ctxt, const xmlChar *URI);
xsltExtInitFunction:
@ctxt: an XSLT transformation context
@URI: the namespace URI for the extension
A function called at initialization time of an XSLT extension module.
Returns a pointer to the module specific data for this transformation.
xsltExtShutdownFunction |
typedef void (*xsltExtShutdownFunction) ( xsltTransformContextPtr ctxt, const xmlChar *URI, void *data);
xsltExtShutdownFunction:
@ctxt: an XSLT transformation context
@URI: the namespace URI for the extension
@data: the data associated to this module
A function called at shutdown time of an XSLT extension module.
xsltStyleExtInitFunction |
/** xsltStyleExtInitFunction: @ctxt: an XSLT stylesheet @URI: the namespace URI for the extension A function called at initialization time of an XSLT extension module. Returns a pointer to the module specific data for this transformation. */ typedef void * (*xsltStyleExtInitFunction) ( xsltStylesheetPtr style, const xmlChar *URI);
Extension Modules API.
xsltStyleExtShutdownFunction |
typedef void (*xsltStyleExtShutdownFunction) ( xsltStylesheetPtr style, const xmlChar *URI, void *data);
xsltStyleExtShutdownFunction:
@ctxt: an XSLT stylesheet
@URI: the namespace URI for the extension
@data: the data associated to this module
A function called at shutdown time of an XSLT extension module.
XSLTPUBFUN |
Macros which declare an exportable function */ #define XSLTPUBFUN ;
Test module http://xmlsoft.org/XSLT/