summaryrefslogtreecommitdiffstats
path: root/src/Daemon/export.h
blob: 9017e3be12dc101a9dd46e40811709644bd761e4 (plain)
1
2
3
4
5
6
7
8
9
10
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