OLD | NEW |
1 #define IN_LIBEXSLT | 1 #define IN_LIBEXSLT |
2 #include "libexslt/libexslt.h" | 2 #include "libexslt/libexslt.h" |
3 | 3 |
4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) | 4 #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) |
5 #include <win32config.h> | 5 #include <win32config.h> |
6 #else | 6 #else |
7 #include "config.h" | 7 #include "config.h" |
8 #endif | 8 #endif |
9 | 9 |
10 #include <string.h> | 10 #include <string.h> |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
786 (xsltStyleExtShutdownFunction) exsltFuncStyleShutdown); | 786 (xsltStyleExtShutdownFunction) exsltFuncStyleShutdown); |
787 | 787 |
788 xsltRegisterExtModuleTopLevel ((const xmlChar *) "function", | 788 xsltRegisterExtModuleTopLevel ((const xmlChar *) "function", |
789 EXSLT_FUNCTIONS_NAMESPACE, | 789 EXSLT_FUNCTIONS_NAMESPACE, |
790 exsltFuncFunctionComp); | 790 exsltFuncFunctionComp); |
791 xsltRegisterExtModuleElement ((const xmlChar *) "result", | 791 xsltRegisterExtModuleElement ((const xmlChar *) "result", |
792 EXSLT_FUNCTIONS_NAMESPACE, | 792 EXSLT_FUNCTIONS_NAMESPACE, |
793 (xsltPreComputeFunction)exsltFuncResultComp, | 793 (xsltPreComputeFunction)exsltFuncResultComp, |
794 (xsltTransformFunction) exsltFuncResultElem); | 794 (xsltTransformFunction) exsltFuncResultElem); |
795 } | 795 } |
OLD | NEW |