summaryrefslogtreecommitdiffhomepage
path: root/include/w32lib/w32lib_api.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/w32lib/w32lib_api.h')
-rw-r--r--include/w32lib/w32lib_api.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/include/w32lib/w32lib_api.h b/include/w32lib/w32lib_api.h
new file mode 100644
index 0000000..ae3fd88
--- /dev/null
+++ b/include/w32lib/w32lib_api.h
@@ -0,0 +1,35 @@
+#ifndef W32LIB_API_H
+#define W32LIB_API_H
+
+#include <limits.h>
+
+/* wlib_export */
+#if defined(__dllexport)
+#define wlib_export __dllexport
+#else
+#define wlib_export
+#endif
+
+/* wlib_import */
+#if defined(__dllimport)
+#define wlib_import __dllimport
+#else
+#define wlib_import
+#endif
+
+/* wlib_api */
+#ifndef WLIB_APP
+#if defined (WLIB_EXPORT)
+#define wlib_api wlib_export
+#elif defined (WLIB_IMPORT)
+#define wlib_api wlib_import
+#elif defined (WLIB_STATIC)
+#define wlib_api
+#else
+#define wlib_api
+#endif
+#else
+#define wlib_api
+#endif
+
+#endif