~ubuntu-branches/ubuntu/oneiric/kdeplasma-addons/oneiric

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef PLASMA_COMIC_EXPORT_H
#define PLASMA_COMIC_EXPORT_H

/* needed for KDE_EXPORT macros */
#include <kdemacros.h>

#if defined _WIN32 || defined _WIN64
#ifndef PLASMA_COMIC_EXPORT
# ifdef MAKE_PLASMACOMICPROVIDERCORE_LIB
#  define PLASMA_COMIC_EXPORT KDE_EXPORT
# else
#  define PLASMA_COMIC_EXPORT KDE_IMPORT
# endif
#endif

#else /* UNIX*/

/* export statements for unix */
#define PLASMA_COMIC_EXPORT KDE_EXPORT
#endif

#endif