00001 /*************************************************************************** 00002 * Copyright (C) 2008 by Kutumov Alexey * 00003 * ru.pixel@gmail.com * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 00033 #ifndef __gl_graphic_core_prerequisites__header__ 00034 #define __gl_graphic_core_prerequisites__header__ 00035 00036 #include "gpucalc/prerequisites.h" 00037 00038 #if PLATFORM == PLATFORM_WIN32 & !defined(__MINGW32__) & !defined(STATIC_LIB) 00039 # ifdef gl_graphic_core_EXPORTS 00040 # define _GpuCalcGLExport __declspec(dllexport) 00041 # else 00042 # if defined (__MINGW32__) 00043 # define _GpuCalcGLExport 00044 # else 00045 # define _GpuCalcGLExport __declspec(dllimport) 00046 # endif 00047 # endif 00048 #elif defined(GCC_VISIBILITY) 00049 # define _GpuCalcGLExport __attribute__((visibility("default"))) 00050 #else 00051 # define _GpuCalcGLExport 00052 #endif 00053 00054 00055 #endif
1.5.6