summaryrefslogtreecommitdiffstats
path: root/src/Daemon/export.h
blob: 1c5cf311af222098eb2bbc7eb401d44b3480ec03 (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