00001 // $Id: flu_export.h,v 1.2 2003/08/20 16:29:44 jbryan Exp $ 00002 00003 /*************************************************************** 00004 * FLU - FLTK Utility Widgets 00005 * Copyright (C) 2002 Ohio Supercomputer Center, Ohio State University 00006 * 00007 * This file and its content is protected by a software license. 00008 * You should have received a copy of this license with this file. 00009 * If not, please contact the Ohio Supercomputer Center immediately: 00010 * Attn: Jason Bryan Re: FLU 1224 Kinnear Rd, Columbus, Ohio 43212 00011 * 00012 ***************************************************************/ 00013 00014 #ifndef _FLU_EXPORT_H 00015 #define _FLU_EXPORT_H 00016 00017 #ifdef FLU_DLL 00018 #ifdef FLU_LIBRARY 00019 #define FLU_EXPORT __declspec(dllexport) 00020 #else 00021 #define FLU_EXPORT __declspec(dllimport) 00022 #endif 00023 #else 00024 #define FLU_EXPORT 00025 #endif 00026 00027 #endif