| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: interface for the variable matching and lookup. | 2 * Summary: interface for the variable matching and lookup. |
| 3 * Description: interface for the variable matching and lookup. | 3 * Description: interface for the variable matching and lookup. |
| 4 * | 4 * |
| 5 * Copy: See Copyright for the status of this software. | 5 * Copy: See Copyright for the status of this software. |
| 6 * | 6 * |
| 7 * Author: Daniel Veillard | 7 * Author: Daniel Veillard |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #ifndef __XML_XSLT_VARIABLES_H__ | 10 #ifndef __XML_XSLT_VARIABLES_H__ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 xmlXPathRegisterVariableLookup((ctxt)->xpathCtxt, \ | 31 xmlXPathRegisterVariableLookup((ctxt)->xpathCtxt, \ |
| 32 xsltXPathVariableLookup, (void *)(ctxt)); \ | 32 xsltXPathVariableLookup, (void *)(ctxt)); \ |
| 33 xsltRegisterAllFunctions((ctxt)->xpathCtxt); \ | 33 xsltRegisterAllFunctions((ctxt)->xpathCtxt); \ |
| 34 xsltRegisterAllElement(ctxt); \ | 34 xsltRegisterAllElement(ctxt); \ |
| 35 (ctxt)->xpathCtxt->extra = ctxt | 35 (ctxt)->xpathCtxt->extra = ctxt |
| 36 | 36 |
| 37 /* | 37 /* |
| 38 * Interfaces for the variable module. | 38 * Interfaces for the variable module. |
| 39 */ | 39 */ |
| 40 | 40 |
| 41 XSLTPUBFUN int XSLTCALL»» | 41 XSLTPUBFUN int XSLTCALL |
| 42 xsltEvalGlobalVariables (xsltTransformContextPtr ctxt); | 42 xsltEvalGlobalVariables (xsltTransformContextPtr ctxt); |
| 43 XSLTPUBFUN int XSLTCALL»» | 43 XSLTPUBFUN int XSLTCALL |
| 44 xsltEvalUserParams (xsltTransformContextPtr ctxt, | 44 xsltEvalUserParams (xsltTransformContextPtr ctxt, |
| 45 const char **params); | 45 const char **params); |
| 46 XSLTPUBFUN int XSLTCALL»» | 46 XSLTPUBFUN int XSLTCALL |
| 47 » » xsltQuoteUserParams» » (xsltTransformContextPtr ctxt, | 47 » » xsltQuoteUserParams» » (xsltTransformContextPtr ctxt, |
| 48 const char **params); | 48 const char **params); |
| 49 XSLTPUBFUN int XSLTCALL»» | 49 XSLTPUBFUN int XSLTCALL |
| 50 xsltEvalOneUserParam (xsltTransformContextPtr ctxt, | 50 xsltEvalOneUserParam (xsltTransformContextPtr ctxt, |
| 51 » » » » » » const xmlChar * name, | 51 » » » » » » const xmlChar * name, |
| 52 const xmlChar * value); | 52 const xmlChar * value); |
| 53 XSLTPUBFUN int XSLTCALL»» | 53 XSLTPUBFUN int XSLTCALL |
| 54 » » xsltQuoteOneUserParam» » (xsltTransformContextPtr ctxt, | 54 » » xsltQuoteOneUserParam» » (xsltTransformContextPtr ctxt, |
| 55 » » » » » » const xmlChar * name, | 55 » » » » » » const xmlChar * name, |
| 56 const xmlChar * value); | 56 const xmlChar * value); |
| 57 | 57 |
| 58 XSLTPUBFUN void XSLTCALL» » | 58 XSLTPUBFUN void XSLTCALL |
| 59 » » xsltParseGlobalVariable»» (xsltStylesheetPtr style, | 59 » » xsltParseGlobalVariable»» (xsltStylesheetPtr style, |
| 60 xmlNodePtr cur); | 60 xmlNodePtr cur); |
| 61 XSLTPUBFUN void XSLTCALL» » | 61 XSLTPUBFUN void XSLTCALL |
| 62 » » xsltParseGlobalParam» » (xsltStylesheetPtr style, | 62 » » xsltParseGlobalParam» » (xsltStylesheetPtr style, |
| 63 xmlNodePtr cur); | 63 xmlNodePtr cur); |
| 64 XSLTPUBFUN void XSLTCALL» » | 64 XSLTPUBFUN void XSLTCALL |
| 65 » » xsltParseStylesheetVariable» (xsltTransformContextPtr ctxt, | 65 » » xsltParseStylesheetVariable» (xsltTransformContextPtr ctxt, |
| 66 xmlNodePtr cur); | 66 xmlNodePtr cur); |
| 67 XSLTPUBFUN void XSLTCALL» » | 67 XSLTPUBFUN void XSLTCALL |
| 68 » » xsltParseStylesheetParam» (xsltTransformContextPtr ctxt, | 68 » » xsltParseStylesheetParam» (xsltTransformContextPtr ctxt, |
| 69 xmlNodePtr cur); | 69 xmlNodePtr cur); |
| 70 XSLTPUBFUN xsltStackElemPtr XSLTCALL | 70 XSLTPUBFUN xsltStackElemPtr XSLTCALL |
| 71 xsltParseStylesheetCallerParam (xsltTransformContextPtr ctxt, | 71 xsltParseStylesheetCallerParam (xsltTransformContextPtr ctxt, |
| 72 xmlNodePtr cur); | 72 xmlNodePtr cur); |
| 73 XSLTPUBFUN int XSLTCALL»» | 73 XSLTPUBFUN int XSLTCALL |
| 74 » » xsltAddStackElemList» » (xsltTransformContextPtr ctxt, | 74 » » xsltAddStackElemList» » (xsltTransformContextPtr ctxt, |
| 75 xsltStackElemPtr elems); | 75 xsltStackElemPtr elems); |
| 76 XSLTPUBFUN void XSLTCALL» » | 76 XSLTPUBFUN void XSLTCALL |
| 77 » » xsltFreeGlobalVariables»» (xsltTransformContextPtr ctxt); | 77 » » xsltFreeGlobalVariables»» (xsltTransformContextPtr ctxt); |
| 78 XSLTPUBFUN xmlXPathObjectPtr XSLTCALL» | 78 XSLTPUBFUN xmlXPathObjectPtr XSLTCALL |
| 79 xsltVariableLookup (xsltTransformContextPtr ctxt, | 79 xsltVariableLookup (xsltTransformContextPtr ctxt, |
| 80 const xmlChar *name, | 80 const xmlChar *name, |
| 81 const xmlChar *ns_uri); | 81 const xmlChar *ns_uri); |
| 82 XSLTPUBFUN xmlXPathObjectPtr XSLTCALL» | 82 XSLTPUBFUN xmlXPathObjectPtr XSLTCALL |
| 83 xsltXPathVariableLookup (void *ctxt, | 83 xsltXPathVariableLookup (void *ctxt, |
| 84 const xmlChar *name, | 84 const xmlChar *name, |
| 85 const xmlChar *ns_uri); | 85 const xmlChar *ns_uri); |
| 86 #ifdef __cplusplus | 86 #ifdef __cplusplus |
| 87 } | 87 } |
| 88 #endif | 88 #endif |
| 89 | 89 |
| 90 #endif /* __XML_XSLT_VARIABLES_H__ */ | 90 #endif /* __XML_XSLT_VARIABLES_H__ */ |
| 91 | 91 |
| OLD | NEW |