diff options
author | Matthias Schiffer <matthias@gamezock.de> | 2009-08-18 15:58:17 +0200 |
---|---|---|
committer | Matthias Schiffer <matthias@gamezock.de> | 2009-08-18 15:58:17 +0200 |
commit | db5ad2e09a6b38e841463dbe7eb076492b62c948 (patch) | |
tree | 5907f6416e35cbd25432a5f1f6dc9664d36aa73c /src/Net/export.h | |
parent | 5da7b0847bac2a5abec95b9ac1701b74baae8964 (diff) | |
download | mad-db5ad2e09a6b38e841463dbe7eb076492b62c948.tar mad-db5ad2e09a6b38e841463dbe7eb076492b62c948.zip |
Mad funktioniert jetzt unter Windows
Diffstat (limited to 'src/Net/export.h')
-rw-r--r-- | src/Net/export.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/Net/export.h b/src/Net/export.h new file mode 100644 index 0000000..c0a5f6a --- /dev/null +++ b/src/Net/export.h @@ -0,0 +1,22 @@ +#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 + +# ifdef MAD_NET_EXPORTS +# ifndef MAD_CORE_EXPORTS +# define MAD_CORE_EXPORTS +# endif +# else +# undef MAD_CORE_EXPORTS +# endif + +#include <Core/export.h> + +#endif |