blob: d36e0d2c1ed763e7d355c4284d72d842b7031a32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <libxml/xmlversion.h>
#ifdef WIN32
#include <win32config.h>
#else
#include "config.h"
#endif
#if defined(WIN32) && defined(_MSC_VER)
#include <libxslt/xsltwin32config.h>
#else
#include <libxslt/xsltconfig.h>
#endif
#include <libxslt/extensions.h>
#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();
}
|