summaryrefslogtreecommitdiff
path: root/include/tgbot/export.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tgbot/export.h')
-rw-r--r--include/tgbot/export.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tgbot/export.h b/include/tgbot/export.h
index b38f1fc..1bfb503 100644
--- a/include/tgbot/export.h
+++ b/include/tgbot/export.h
@@ -4,21 +4,21 @@
#ifndef TGBOT_API
#ifdef TGBOT_DLL
#if defined _WIN32 || defined __CYGWIN__
- #define TGBOT_HELPER_DLL_IMPORT __declspec(dllimport)
#define TGBOT_HELPER_DLL_EXPORT __declspec(dllexport)
+ #define TGBOT_HELPER_DLL_IMPORT __declspec(dllimport)
#else
#if __GNUC__ >= 4
- #define TGBOT_HELPER_DLL_IMPORT __attribute__ ((visibility ("default")))
#define TGBOT_HELPER_DLL_EXPORT __attribute__ ((visibility ("default")))
+ #define TGBOT_HELPER_DLL_IMPORT __attribute__ ((visibility ("default")))
#else
- #define TGBOT_HELPER_DLL_IMPORT
#define TGBOT_HELPER_DLL_EXPORT
+ #define TGBOT_HELPER_DLL_IMPORT
#endif
#endif
#ifdef TgBot_EXPORTS
#define TGBOT_API TGBOT_HELPER_DLL_EXPORT
#else
- #define FOX_API TGBOT_HELPER_DLL_IMPORT
+ #define TGBOT_API TGBOT_HELPER_DLL_IMPORT
#endif
#else
#define TGBOT_API