summaryrefslogtreecommitdiffstats
path: root/src/Net/export.h
blob: 1f69aca1d45d39c7ec3d4af801d608c3ce98412c (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef MAD_NET_EXPORT
# ifdef _WIN32
#  ifdef MAD_NET_EXPORTS
#   define MAD_NET_EXPORT __declspec(dllexport)
#  else
#   define MAD_NET_EXPORT __declspec(dllimport)
#  endif
# else
#  define MAD_NET_EXPORT
# endif
#endif