mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 15:33:12 +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
|
||||
#if defined(IN_LIBXSLT) && !defined(LIBXSLT_STATIC)
|
||||
#define XSLTPUBFUN __declspec(dllexport)
|
||||
#define XSLTPUBVAR __declspec(dllexport)
|
||||
#ifndef __clang__
|
||||
#define XSLTPUBVAR __declspec(dllexport)
|
||||
#else
|
||||
#define XSLTPUBVAR __declspec(dllexport) extern
|
||||
#endif
|
||||
#else
|
||||
#define XSLTPUBFUN
|
||||
#if !defined(LIBXSLT_STATIC)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue