summaryrefslogtreecommitdiffstats
path: root/src/Common/export.h
blob: 532f3ebbe9cfa68fe2530596475377a1ce72f1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MAD_COMMON_EXPORT
# ifdef _WIN32
#  ifdef MAD_COMMON_EXPORTS
#   define MAD_COMMON_EXPORT __declspec(dllexport)
#  else
#   define MAD_COMMON_EXPORT __declspec(dllimport)
#  endif
# else
#  define MAD_COMMON_EXPORT
# endif
#endif