1 | /*
|
---|
2 | * Summary: internal header only used during the compilation of libxslt
|
---|
3 | * Description: internal header only used during the compilation of libxslt
|
---|
4 | *
|
---|
5 | * Copy: See Copyright for the status of this software.
|
---|
6 | *
|
---|
7 | * Author: Daniel Veillard
|
---|
8 | */
|
---|
9 |
|
---|
10 | #ifndef __XSLT_LIBXSLT_H__
|
---|
11 | #define __XSLT_LIBXSLT_H__
|
---|
12 |
|
---|
13 | #if defined(WIN32) && !defined (__CYGWIN__) && !defined (__MINGW32__)
|
---|
14 | #include <win32config.h>
|
---|
15 | #elif defined(VBOX)
|
---|
16 | #include "vboxconfig.h"
|
---|
17 | #else
|
---|
18 | #include "config.h"
|
---|
19 | #endif
|
---|
20 |
|
---|
21 | #include "xsltconfig.h"
|
---|
22 | #include <libxml/xmlversion.h>
|
---|
23 |
|
---|
24 | #if !defined LIBXSLT_PUBLIC
|
---|
25 | #if (defined (__CYGWIN__) || defined _MSC_VER) && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
|
---|
26 | #define LIBXSLT_PUBLIC __declspec(dllimport)
|
---|
27 | #else
|
---|
28 | #define LIBXSLT_PUBLIC
|
---|
29 | #endif
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | #endif /* ! __XSLT_LIBXSLT_H__ */
|
---|