summaryrefslogtreecommitdiffstats
path: root/src/Daemon/export.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Daemon/export.h')
-rw-r--r--src/Daemon/export.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Daemon/export.h b/src/Daemon/export.h
new file mode 100644
index 0000000..1c5cf31
--- /dev/null
+++ b/src/Daemon/export.h
@@ -0,0 +1,11 @@
+#ifndef MAD_DAEMON_EXPORT
+# ifdef _WIN32
+# ifdef MAD_DAEMON_EXPORTS
+# define MAD_DAEMON_EXPORT _declspec(dllexport)
+# else
+# define MAD_DAEMON_EXPORT _declspec(dllimport)
+# endif
+# else
+# define MAD_DAEMON_EXPORT
+# endif
+#endif