00001 // Wild Magic Source Code 00002 // David Eberly 00003 // http://www.geometrictools.com 00004 // Copyright (c) 1998-2008 00005 // 00006 // This library is free software; you can redistribute it and/or modify it 00007 // under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation; either version 2.1 of the License, or (at 00009 // your option) any later version. The license is available for reading at 00010 // either of the locations: 00011 // http://www.gnu.org/copyleft/lgpl.html 00012 // http://www.geometrictools.com/License/WildMagicLicense.pdf 00013 // 00014 // Version: 4.0.0 (2006/06/28) 00015 00016 #ifndef WM4FOUNDATIONLIB_H 00017 #define WM4FOUNDATIONLIB_H 00018 00019 // For the DLL library. 00020 #ifdef WM4_FOUNDATION_DLL_EXPORT 00021 #define WM4_FOUNDATION_ITEM __declspec(dllexport) 00022 00023 // For a client of the DLL library. 00024 #else 00025 #ifdef WM4_FOUNDATION_DLL_IMPORT 00026 #define WM4_FOUNDATION_ITEM __declspec(dllimport) 00027 00028 // For the static library. 00029 #else 00030 #define WM4_FOUNDATION_ITEM 00031 00032 #endif 00033 #endif 00034 #endif