Equalizer  1.8.0
Parallel Rendering Framework
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
eq/client/api.h
1 
2 /* Copyright (c) 2010, Daniel Pfeifer <daniel@pfeifer-mail.de>
3  * 2013-2014, Stefan.Eilemann@epfl.ch
4  *
5  * This library is free software; you can redistribute it and/or modify it under
6  * the terms of the GNU Lesser General Public License version 2.1 as published
7  * by the Free Software Foundation.
8  *
9  * This library is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11  * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12  * details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with this library; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef EQCLIENT_API_H
20 #define EQCLIENT_API_H
21 
22 #include <eq/defines.h>
23 #include <eq/fabric/api.h>
24 
25 #if defined(EQUALIZER_STATIC)
26 # define EQ_API
27 #elif defined(EQUALIZER_SHARED)
28 # define EQ_API LUNCHBOX_DLLEXPORT
29 #else
30 # define EQ_API LUNCHBOX_DLLIMPORT
31 #endif
32 
33 #endif /* EQCLIENT_API_H */