Changeset 44 for trunk/src/bindings/scripts/ScriptMgr.h
- Timestamp:
- 11/19/08 13:27:40 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bindings/scripts/ScriptMgr.h
r37 r44 1 /* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> 1 /* Copyright (C) 2008 Trinity <http://www.trinitycore.org/> 2 * 3 * Thanks to the original authors: ScriptDev2 <https://scriptdev2.svn.sourceforge.net/> 4 * 2 5 * This program is free software licensed under GPL version 2 3 6 * Please see the included DOCS/LICENSE.TXT for more information */ … … 79 82 80 83 #ifdef WIN32 81 #define MANGOS_DLL_EXPORT extern "C" __declspec(dllexport)84 #define TRINITY_DLL_EXPORT extern "C" __declspec(dllexport) 82 85 #elif defined( __GNUC__ ) 83 #define MANGOS_DLL_EXPORT extern "C"86 #define TRINITY_DLL_EXPORT extern "C" 84 87 #else 85 #define MANGOS_DLL_EXPORT extern "C" export88 #define TRINITY_DLL_EXPORT extern "C" export 86 89 #endif 87 90