mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-11-06 23:49:25 +03:00
* configure.in: applied albert portability patch * libxslt/libxslt.h libxslt/xslt.h libxslt/xsltconfig.h.in libxslt/xsltutils.c libxslt/xsltwin32config.h.in win32/dsp/libxslt.def: applied Igor patch for Windows Daniel
34 lines
659 B
C
34 lines
659 B
C
/*
|
|
* libxslt.h: internal header only used during the compilation of libxslt
|
|
*
|
|
* See COPYRIGHT for the status of this software
|
|
*
|
|
* Author: daniel@veillard.com
|
|
*/
|
|
|
|
#ifndef __XSLT_LIBXSLT_H__
|
|
#define __XSLT_LIBXSLT_H__
|
|
|
|
#ifdef WIN32
|
|
#include <win32config.h>
|
|
#else
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#if defined(WIN32) && !defined(__CYGWIN__)
|
|
#include "xsltwin32config.h"
|
|
#else
|
|
#include "xsltconfig.h"
|
|
#include <libxml/xmlversion.h>
|
|
#endif
|
|
|
|
#if !defined LIBXSLT_PUBLIC
|
|
#if defined _MSC_VER && !defined IN_LIBXSLT && !defined LIBXSLT_STATIC
|
|
#define LIBXSLT_PUBLIC __declspec(dllimport)
|
|
#else
|
|
#define LIBXSLT_PUBLIC
|
|
#endif
|
|
#endif
|
|
|
|
#endif /* ! __XSLT_LIBXSLT_H__ */
|