| 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 <libxml/tree.h> | 10 #include <libxml/tree.h> |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 EXSLT_COMMON_NAMESPACE, | 122 EXSLT_COMMON_NAMESPACE, |
| 123 exsltNodeSetFunction); | 123 exsltNodeSetFunction); |
| 124 xsltRegisterExtModuleFunction((const xmlChar *) "object-type", | 124 xsltRegisterExtModuleFunction((const xmlChar *) "object-type", |
| 125 EXSLT_COMMON_NAMESPACE, | 125 EXSLT_COMMON_NAMESPACE, |
| 126 exsltObjectTypeFunction); | 126 exsltObjectTypeFunction); |
| 127 xsltRegisterExtModuleElement((const xmlChar *) "document", | 127 xsltRegisterExtModuleElement((const xmlChar *) "document", |
| 128 EXSLT_COMMON_NAMESPACE, | 128 EXSLT_COMMON_NAMESPACE, |
| 129 (xsltPreComputeFunction) xsltDocumentComp, | 129 (xsltPreComputeFunction) xsltDocumentComp, |
| 130 (xsltTransformFunction) xsltDocumentElem); | 130 (xsltTransformFunction) xsltDocumentElem); |
| 131 } | 131 } |
| OLD | NEW |