00001 /*********************************************************************** 00002 filename: IrrlichtRendererDef.h 00003 created: 20/7/2004 00004 author: Thomas Suter 00005 00006 changes: 00007 - Irrlicht patching not needed anymore 00008 - using the irrlicht filesystem to load config files etc. 00009 *************************************************************************/ 00010 /*************************************************************************** 00011 * Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team 00012 * 00013 * Permission is hereby granted, free of charge, to any person obtaining 00014 * a copy of this software and associated documentation files (the 00015 * "Software"), to deal in the Software without restriction, including 00016 * without limitation the rights to use, copy, modify, merge, publish, 00017 * distribute, sublicense, and/or sell copies of the Software, and to 00018 * permit persons to whom the Software is furnished to do so, subject to 00019 * the following conditions: 00020 * 00021 * The above copyright notice and this permission notice shall be 00022 * included in all copies or substantial portions of the Software. 00023 * 00024 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 00025 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00026 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00027 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 00028 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 00029 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 00030 * OTHER DEALINGS IN THE SOFTWARE. 00031 ***************************************************************************/ 00032 00033 /* 00034 Beginning from version 0.7 Irrlicht does NOT need any changes for the GUI-renderer. 00035 Thanks to Nikolaus Gebhardt for including the missing methods in the renderer. 00036 */ 00037 00038 #ifndef IRRLICHTRENDERERDEF_H_INCLUDED 00039 #define IRRLICHTRENDERERDEF_H_INCLUDED 00040 00041 #if (defined( __WIN32__ ) || defined( _WIN32 ) || defined (WIN32)) && !defined(CEGUI_STATIC) 00042 # ifdef IRRRENDERER_EXPORTS 00043 # define IRRLICHT_GUIRENDERER_API __declspec(dllexport) 00044 # else 00045 # define IRRLICHT_GUIRENDERER_API __declspec(dllimport) 00046 # endif 00047 #else 00048 # define IRRLICHT_GUIRENDERER_API 00049 #endif 00050 00051 #endif