00001 // *************************************************************************** 00002 // api_global.h (c) 2010 Derek Barnett 00003 // Marth Lab, Department of Biology, Boston College 00004 // --------------------------------------------------------------------------- 00005 // Last modified: 19 November 2010 (DB) 00006 // --------------------------------------------------------------------------- 00007 // Provides macros for exporting & importing BamTools API library symbols 00008 // *************************************************************************** 00009 00010 #ifndef API_GLOBAL_H 00011 #define API_GLOBAL_H 00012 00013 #include "shared/bamtools_global.h" 00014 00015 #ifdef BAMTOOLS_API_LIBRARY 00016 # define API_EXPORT BAMTOOLS_LIBRARY_EXPORT 00017 #else 00018 # define API_EXPORT BAMTOOLS_LIBRARY_IMPORT 00019 #endif 00020 00021 #endif // API_GLOBAL_H