#define IN_LIBEXSLT #include "libexslt/libexslt.h" #include #if defined(WIN32) && !defined (__CYGWIN__) && (!__MINGW32__) #include #else #include "config.h" #endif #if defined(WIN32) && defined(_MSC_VER) #include #else #include #endif #include #include "exsltconfig.h" #include "exslt.h" const char *exsltLibraryVersion = LIBEXSLT_VERSION_STRING; const int exsltLibexsltVersion = LIBEXSLT_VERSION; const int exsltLibxsltVersion = LIBXSLT_VERSION; const int exsltLibxmlVersion = LIBXML_VERSION; /** * exsltRegisterAll: * * Registers all available EXSLT extensions */ void exsltRegisterAll (void) { exsltCommonRegister(); exsltMathRegister(); exsltSetsRegister(); exsltFuncRegister(); exsltStrRegister(); exsltDateRegister(); exsltSaxonRegister(); exsltDynRegister(); }