~ubuntu-branches/ubuntu/saucy/emscripten/saucy-proposed

« back to all changes in this revision

Viewing changes to tests/poppler/qt4/src/poppler-export.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-05-02 13:11:51 UTC
  • Revision ID: package-import@ubuntu.com-20130502131151-q8dvteqr1ef2x7xz
Tags: upstream-1.4.1~20130504~adb56cb
ImportĀ upstreamĀ versionĀ 1.4.1~20130504~adb56cb

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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