Equalizer
1.4.1
|
00001 00002 /* Copyright (c) 2010, Daniel Pfeifer <daniel@pfeifer-mail.de> 00003 * 2010-2012, Stefan Eilemann <eile@eyescale.ch> 00004 * 00005 * This library is free software; you can redistribute it and/or modify it under 00006 * the terms of the GNU Lesser General Public License version 2.1 as published 00007 * by the Free Software Foundation. 00008 * 00009 * This library is distributed in the hope that it will be useful, but WITHOUT 00010 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00011 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00012 * details. 00013 * 00014 * You should have received a copy of the GNU Lesser General Public License 00015 * along with this library; if not, write to the Free Software Foundation, Inc., 00016 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 00017 */ 00018 00019 #ifndef CO_API_H 00020 #define CO_API_H 00021 00022 #include <co/defines.h> 00023 00024 #if defined(COLLAGE_STATIC) 00025 # define CO_API 00026 #elif defined(COLLAGE_SHARED) 00027 # define CO_API LB_DLLEXPORT 00028 #else 00029 # define CO_API LB_DLLIMPORT 00030 #endif 00031 00032 #endif //CO_API_H