summaryrefslogtreecommitdiffstats
path: root/include/sratom
diff options
context:
space:
mode:
Diffstat (limited to 'include/sratom')
-rw-r--r--include/sratom/sratom.h19
1 files changed, 6 insertions, 13 deletions
diff --git a/include/sratom/sratom.h b/include/sratom/sratom.h
index 9f06e9c..d0983e7 100644
--- a/include/sratom/sratom.h
+++ b/include/sratom/sratom.h
@@ -30,19 +30,12 @@
#include <stdbool.h>
#include <stdint.h>
-#ifdef SRATOM_SHARED
-# ifdef _WIN32
-# define SRATOM_LIB_IMPORT __declspec(dllimport)
-# define SRATOM_LIB_EXPORT __declspec(dllexport)
-# else
-# define SRATOM_LIB_IMPORT __attribute__((visibility("default")))
-# define SRATOM_LIB_EXPORT __attribute__((visibility("default")))
-# endif
-# ifdef SRATOM_INTERNAL
-# define SRATOM_API SRATOM_LIB_EXPORT
-# else
-# define SRATOM_API SRATOM_LIB_IMPORT
-# endif
+#if defined(_WIN32) && !defined(SRATOM_STATIC) && defined(SRATOM_INTERNAL)
+# define SRATOM_API __declspec(dllexport)
+#elif defined(_WIN32) && !defined(SRATOM_STATIC)
+# define SRATOM_API __declspec(dllimport)
+#elif defined(__GNUC__)
+# define SRATOM_API __attribute__((visibility("default")))
#else
# define SRATOM_API
#endif