mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 09:12:56 +00:00
[LIBXSLT] Fix public variable declarations when using clang-cl
This commit is contained in:
parent
bd0445dbf2
commit
988c682e8c
1 changed files with 5 additions and 1 deletions
|
@ -51,7 +51,11 @@
|
||||||
#undef XSLTCALL
|
#undef XSLTCALL
|
||||||
#if defined(IN_LIBXSLT) && !defined(LIBXSLT_STATIC)
|
#if defined(IN_LIBXSLT) && !defined(LIBXSLT_STATIC)
|
||||||
#define XSLTPUBFUN __declspec(dllexport)
|
#define XSLTPUBFUN __declspec(dllexport)
|
||||||
#define XSLTPUBVAR __declspec(dllexport)
|
#ifndef __clang__
|
||||||
|
#define XSLTPUBVAR __declspec(dllexport)
|
||||||
|
#else
|
||||||
|
#define XSLTPUBVAR __declspec(dllexport) extern
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define XSLTPUBFUN
|
#define XSLTPUBFUN
|
||||||
#if !defined(LIBXSLT_STATIC)
|
#if !defined(LIBXSLT_STATIC)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue