00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00014 #ifndef _gnSetup_h_
00015 #define _gnSetup_h_
00016
00017 #include <stdlib.h>
00018 using namespace std;
00019
00020 #ifdef GN_GUI
00021 #include "wx/wx_cw_d.h"
00022 #endif
00023
00024 #ifdef GNMAKINGDLL // build the libgenome dll
00025 #define GNDLLEXPORT __declspec(dllexport)
00026 #define GNDLLEXPORT_DATA(type) __declspec(dllexport) type
00027 #elif defined(GNUSINGDLL)
00028
00029 #define GNDLLEXPORT __declspec(dllimport)
00030 #define GNDLLEXPORT_DATA(type) __declspec(dllimport) type
00031 #else // static linking
00032 #define GNDLLEXPORT
00033 #define GNDLLEXPORT_DATA
00034 #endif
00035
00036 #endif
00037