| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Summary: interface for the non-standard features | 2 * Summary: interface for the non-standard features |
| 3 * Description: implement some extension outside the XSLT namespace | 3 * Description: implement some extension outside the XSLT namespace |
| 4 * but not EXSLT with is in a different library. | 4 * but not EXSLT with is in a different library. |
| 5 * | 5 * |
| 6 * Copy: See Copyright for the status of this software. | 6 * Copy: See Copyright for the status of this software. |
| 7 * | 7 * |
| 8 * Author: Daniel Veillard | 8 * Author: Daniel Veillard |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 * | 53 * |
| 54 * This is Norm's namespace for SAXON extensions. | 54 * This is Norm's namespace for SAXON extensions. |
| 55 */ | 55 */ |
| 56 #define XSLT_NORM_SAXON_NAMESPACE ((xmlChar *) \ | 56 #define XSLT_NORM_SAXON_NAMESPACE ((xmlChar *) \ |
| 57 "http://nwalsh.com/xslt/ext/com.nwalsh.saxon.CVS") | 57 "http://nwalsh.com/xslt/ext/com.nwalsh.saxon.CVS") |
| 58 | 58 |
| 59 | 59 |
| 60 XSLTPUBFUN void XSLTCALL | 60 XSLTPUBFUN void XSLTCALL |
| 61 xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt, | 61 xsltFunctionNodeSet (xmlXPathParserContextPtr ctxt, |
| 62 int nargs); | 62 int nargs); |
| 63 XSLTPUBFUN void XSLTCALL» » | 63 XSLTPUBFUN void XSLTCALL |
| 64 xsltDebug (xsltTransformContextPtr ctxt, | 64 xsltDebug (xsltTransformContextPtr ctxt, |
| 65 xmlNodePtr node, | 65 xmlNodePtr node, |
| 66 xmlNodePtr inst, | 66 xmlNodePtr inst, |
| 67 xsltStylePreCompPtr comp); | 67 xsltStylePreCompPtr comp); |
| 68 | 68 |
| 69 | 69 |
| 70 XSLTPUBFUN void XSLTCALL» » | 70 XSLTPUBFUN void XSLTCALL |
| 71 xsltRegisterExtras (xsltTransformContextPtr ctxt); | 71 xsltRegisterExtras (xsltTransformContextPtr ctxt); |
| 72 XSLTPUBFUN void XSLTCALL» » | 72 XSLTPUBFUN void XSLTCALL |
| 73 xsltRegisterAllExtras (void); | 73 xsltRegisterAllExtras (void); |
| 74 | 74 |
| 75 #ifdef __cplusplus | 75 #ifdef __cplusplus |
| 76 } | 76 } |
| 77 #endif | 77 #endif |
| 78 | 78 |
| 79 #endif /* __XML_XSLT_EXTRA_H__ */ | 79 #endif /* __XML_XSLT_EXTRA_H__ */ |
| 80 | 80 |
| OLD | NEW |