git-svn-id: svn://svn.icculus.org/netradiant/trunk@54 61c419a2-8eb2-4b30-bcec-8cead039b335

This commit is contained in:
rpolzer
2008-09-16 07:40:46 +00:00
parent 4d37af3c00
commit f57bd8b3da
3 changed files with 30 additions and 12 deletions

View File

@@ -26,9 +26,16 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#include "debugging/debugging.h"
#if defined(WIN32)
#ifdef MINGW32
#define RADIANT_DLLEXPORT __declspec(dllexport)
#define RADIANT_DLLIMPORT __declspec(dllimport)
#else
#define RADIANT_DLLEXPORT __stdcall
#define RADIANT_DLLIMPORT __stdcall
#endif
#else
#define RADIANT_DLLEXPORT
#define RADIANT_DLLIMPORT
#endif