summaryrefslogtreecommitdiff
path: root/src/hunspell/hunvisapi.h.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/hunspell/hunvisapi.h.in')
-rw-r--r--src/hunspell/hunvisapi.h.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/hunspell/hunvisapi.h.in b/src/hunspell/hunvisapi.h.in
new file mode 100644
index 0000000..9c7f1b7
--- /dev/null
+++ b/src/hunspell/hunvisapi.h.in
@@ -0,0 +1,18 @@
+#ifndef _HUNSPELL_VISIBILITY_H_
+#define _HUNSPELL_VISIBILITY_H_
+
+#if defined(HUNSPELL_STATIC)
+# define LIBHUNSPELL_DLL_EXPORTED
+#elif defined(_MSC_VER)
+# if defined(BUILDING_LIBHUNSPELL)
+# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllexport)
+# else
+# define LIBHUNSPELL_DLL_EXPORTED __declspec(dllimport)
+# endif
+#elif BUILDING_LIBHUNSPELL && @HAVE_VISIBILITY@
+# define LIBHUNSPELL_DLL_EXPORTED __attribute__((__visibility__("default")))
+#else
+# define LIBHUNSPELL_DLL_EXPORTED
+#endif
+
+#endif