mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
18 lines
445 B
C
18 lines
445 B
C
/*
|
|
* This file is used to set the poppler_qt5_EXPORT macros right.
|
|
* This is needed for setting the visibility on windows, it will have no effect on other platforms.
|
|
*/
|
|
#if defined(_WIN32)
|
|
# define LIB_EXPORT __declspec(dllexport)
|
|
# define LIB_IMPORT __declspec(dllimport)
|
|
#else
|
|
# define LIB_EXPORT
|
|
# define LIB_IMPORT
|
|
#endif
|
|
|
|
#ifdef poppler_qt5_EXPORTS
|
|
# define POPPLER_QT5_EXPORT LIB_EXPORT
|
|
#else
|
|
# define POPPLER_QT5_EXPORT LIB_IMPORT
|
|
#endif
|