1 // $Id: flu_export.h 900 2009-08-13 20:00:45Z larry $
2 
3 /***************************************************************
4  *                FLU - FLTK Utility Widgets
5  *  Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University
6  *
7  * This file and its content is protected by a software license.
8  * You should have received a copy of this license with this file.
9  * If not, please contact the Ohio Supercomputer Center immediately:
10  * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212
11  *
12  ***************************************************************/
13 
14 #ifndef _FLU_EXPORT_H
15 #define _FLU_EXPORT_H
16 
17 #ifdef FLU_DLL
18 #ifdef FLU_LIBRARY
19 #define FLU_EXPORT __declspec(dllexport)
20 #else
21 #define FLU_EXPORT __declspec(dllimport)
22 #endif
23 #else
24 #define FLU_EXPORT
25 #endif
26 
27 #endif
28