summaryrefslogtreecommitdiff
path: root/include/crawler/CrawlerExportable.hpp
blob: 5b891086298b1f51591b7daed0cfe5f4c38c83d2 (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
#ifndef __CRAWLER_EXPORTABLE_H
#define __CRAWLER_EXPORTABLE_H

#ifndef _WIN32

#define CRAWLER_DLL_VISIBLE

#else

#ifdef SHARED

#ifdef BUILDING_CRAWLER
#define CRAWLER_DLL_VISIBLE __declspec(dllexport)
#else
#define CRAWLER_DLL_VISIBLE __declspec(dllimport)
#endif

#else

#define CRAWLER_DLL_VISIBLE

#endif // BUILDING_CRAWLER

#endif // _WIN32

#endif