summaryrefslogtreecommitdiffstats
path: root/src/Client/export.h
blob: 44c120c9d2c11d3990ea3a6d7566ce3d402106cd (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