src/biu/qrng/gsl_types.h
Go to the documentation of this file.00001 /* gsl_types.h 00002 * 00003 * Copyright (C) 2001 Brian Gough 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 (at 00008 * your option) any later version. 00009 * 00010 * This program is distributed in the hope that it will be useful, but 00011 * WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * 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 Free Software 00017 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00018 */ 00019 00020 #ifndef __GSL_TYPES_H__ 00021 #define __GSL_TYPES_H__ 00022 00023 #ifndef GSL_VAR 00024 00025 #ifdef WIN32 00026 # ifdef GSL_DLL 00027 # ifdef DLL_EXPORT 00028 # define GSL_VAR extern __declspec(dllexport) 00029 # else 00030 # define GSL_VAR extern __declspec(dllimport) 00031 # endif 00032 # else 00033 # define GSL_VAR extern 00034 # endif 00035 #else 00036 # define GSL_VAR extern 00037 #endif 00038 00039 #endif 00040 00041 #endif /* __GSL_TYPES_H__ */