| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: interface for the XSLT functions not from XPath | 2 * Summary: interface for the XSLT functions not from XPath |
| 3 * Description: a set of extra functions coming from XSLT but not in XPath | 3 * Description: a set of extra functions coming from XSLT but not in XPath |
| 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 and Bjorn Reese <breese@users.sourceforge.net> | 7 * Author: Daniel Veillard and Bjorn Reese <breese@users.sourceforge.net> |
| 8 */ | 8 */ |
| 9 | 9 |
| 10 #ifndef __XML_XSLT_FUNCTIONS_H__ | 10 #ifndef __XML_XSLT_FUNCTIONS_H__ |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 XSLTPUBFUN xmlXPathFunction XSLTCALL | 32 XSLTPUBFUN xmlXPathFunction XSLTCALL |
| 33 xsltXPathFunctionLookup (xmlXPathContextPtr ctxt, | 33 xsltXPathFunctionLookup (xmlXPathContextPtr ctxt, |
| 34 const xmlChar *name, | 34 const xmlChar *name, |
| 35 const xmlChar *ns_uri); | 35 const xmlChar *ns_uri); |
| 36 | 36 |
| 37 /* | 37 /* |
| 38 * Interfaces for the functions implementations. | 38 * Interfaces for the functions implementations. |
| 39 */ | 39 */ |
| 40 | 40 |
| 41 XSLTPUBFUN void XSLTCALL» | 41 XSLTPUBFUN void XSLTCALL |
| 42 xsltDocumentFunction (xmlXPathParserContextPtr ctxt, | 42 xsltDocumentFunction (xmlXPathParserContextPtr ctxt, |
| 43 int nargs); | 43 int nargs); |
| 44 XSLTPUBFUN void XSLTCALL» | 44 XSLTPUBFUN void XSLTCALL |
| 45 xsltKeyFunction (xmlXPathParserContextPtr ctxt, | 45 xsltKeyFunction (xmlXPathParserContextPtr ctxt, |
| 46 int nargs); | 46 int nargs); |
| 47 XSLTPUBFUN void XSLTCALL» | 47 XSLTPUBFUN void XSLTCALL |
| 48 xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt, | 48 xsltUnparsedEntityURIFunction (xmlXPathParserContextPtr ctxt, |
| 49 int nargs); | 49 int nargs); |
| 50 XSLTPUBFUN void XSLTCALL» | 50 XSLTPUBFUN void XSLTCALL |
| 51 xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt, | 51 xsltFormatNumberFunction (xmlXPathParserContextPtr ctxt, |
| 52 int nargs); | 52 int nargs); |
| 53 XSLTPUBFUN void XSLTCALL» | 53 XSLTPUBFUN void XSLTCALL |
| 54 xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt, | 54 xsltGenerateIdFunction (xmlXPathParserContextPtr ctxt, |
| 55 int nargs); | 55 int nargs); |
| 56 XSLTPUBFUN void XSLTCALL» | 56 XSLTPUBFUN void XSLTCALL |
| 57 xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt, | 57 xsltSystemPropertyFunction (xmlXPathParserContextPtr ctxt, |
| 58 int nargs); | 58 int nargs); |
| 59 XSLTPUBFUN void XSLTCALL» | 59 XSLTPUBFUN void XSLTCALL |
| 60 xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt, | 60 xsltElementAvailableFunction (xmlXPathParserContextPtr ctxt, |
| 61 int nargs); | 61 int nargs); |
| 62 XSLTPUBFUN void XSLTCALL» | 62 XSLTPUBFUN void XSLTCALL |
| 63 xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt, | 63 xsltFunctionAvailableFunction (xmlXPathParserContextPtr ctxt, |
| 64 int nargs); | 64 int nargs); |
| 65 | 65 |
| 66 /* | 66 /* |
| 67 * And the registration | 67 * And the registration |
| 68 */ | 68 */ |
| 69 | 69 |
| 70 XSLTPUBFUN void XSLTCALL» | 70 XSLTPUBFUN void XSLTCALL |
| 71 xsltRegisterAllFunctions (xmlXPathContextPtr ctxt); | 71 xsltRegisterAllFunctions (xmlXPathContextPtr ctxt); |
| 72 | 72 |
| 73 #ifdef __cplusplus | 73 #ifdef __cplusplus |
| 74 } | 74 } |
| 75 #endif | 75 #endif |
| 76 | 76 |
| 77 #endif /* __XML_XSLT_FUNCTIONS_H__ */ | 77 #endif /* __XML_XSLT_FUNCTIONS_H__ */ |
| 78 | 78 |
| OLD | NEW |