summaryrefslogtreecommitdiff
path: root/include/tgbot/export.h
blob: 3178a0e947459a5591b335c1271531d1a47b19d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef TGBOT_EXPORT_H
#define TGBOT_EXPORT_H

#ifndef TGBOT_API
#ifdef _MSC_VER
#ifdef TGBOT_DLL
#ifdef TgBot_EXPORTS
#define TGBOT_API __declspec(dllexport)
#else
#define TGBOT_API __declspec(dllimport)
#endif
#else
#define TGBOT_API
#endif
#else
#define TGBOT_API
#endif
#endif

#endif //TGBOT_EXPORT_H