summaryrefslogtreecommitdiffstats
path: root/src/Client/export.h
blob: c52e49d1f46162888be2be262a323965c61c0206 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MAD_CLIENT_EXPORT
# ifdef _WIN32
#  ifdef MAD_CLIENT_EXPORTS
#   define MAD_CLIENT_EXPORT _declspec(dllexport)
#  else
#   define MAD_CLIENT_EXPORT _declspec(dllimport)
#  endif
# else
#  define MAD_CLIENT_EXPORT
# endif
#endif