blob: 3a9e50d1f33b5d7287540f8d7b2725bd061ff151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// file : libcommon/common/export.hxx
// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
// license : GNU GPL v2; see accompanying LICENSE file
#ifndef LIBCOMMON_COMMON_EXPORT_HXX
#define LIBCOMMON_COMMON_EXPORT_HXX
#include <common/config.hxx>
#ifdef LIBCOMMON_STATIC_LIB
# define LIBCOMMON_EXPORT
#else
# ifdef _WIN32
# ifdef _MSC_VER
# ifdef LIBCOMMON_DYNAMIC_LIB
# define LIBCOMMON_EXPORT __declspec(dllexport)
# else
# define LIBCOMMON_EXPORT __declspec(dllimport)
# endif
# else
# ifdef LIBCOMMON_DYNAMIC_LIB
# ifdef DLL_EXPORT
# define LIBCOMMON_EXPORT __declspec(dllexport)
# else
# define LIBCOMMON_EXPORT
# endif
# else
# define LIBCOMMON_EXPORT __declspec(dllimport)
# endif
# endif
# else
# define LIBCOMMON_EXPORT
# endif
#endif
#endif // LIBCOMMON_COMMON_EXPORT_HXX
|