1 /*
2 * This file is used to set the poppler_qt4_EXPORT macros right.
3 * This is needed for setting the visibility on windows, it will have no effect on other platforms.
4 */
5 #if defined(_WIN32)
6 # define LIB_EXPORT __declspec(dllexport)
7 # define LIB_IMPORT __declspec(dllimport)
8 #else
9 # define LIB_EXPORT
10 # define LIB_IMPORT
11 #endif
12 
13 #ifdef poppler_qt4_EXPORTS
14 # define POPPLER_QT4_EXPORT LIB_EXPORT
15 #else
16 # define POPPLER_QT4_EXPORT LIB_IMPORT
17 #endif
18