00001
00002
00003
00004 #ifndef _marsyas_DLLDEFINES_H
00005 #define _marsyas_DLLDEFINES_H
00006
00007
00008 #if defined (_WIN32)
00009 #include "config.h"
00010 #if defined MARSYAS_STATIC
00011 #define marsyas_EXPORT
00012 #else
00013 #if defined (marsyas_EXPORTS)
00014 #pragma warning(disable: 4251)
00015 #define marsyas_EXPORT __declspec(dllexport)
00016 #else
00017 #pragma warning(disable: 4251)
00018 #define marsyas_EXPORT __declspec(dllimport)
00019 #endif
00020 #endif
00021 #else
00022 #define marsyas_EXPORT
00023 #endif
00024 #endif