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 __MWERKS__
00021 #define COMMAND_LINE
00022 #define __GNDEBUG__
00023
00024 #endif
00025
00026 #ifdef GN_GUI
00027 #include "wx/wx_cw_d.h"
00028 #endif
00029
00030 #ifdef GNMAKINGDLL
00031
00032 #define GNDLLEXPORT __declspec(dllexport)
00033 #define GNDLLEXPORT_DATA(type) __declspec(dllexport) type
00034
00035 #elif defined(GNUSINGDLL)
00036
00037 #define GNDLLEXPORT __declspec(dllimport)
00038 #define GNDLLEXPORT_DATA(type) __declspec(dllimport) type
00039
00040 #else
00041 #define GNDLLEXPORT
00042 #define GNDLLEXPORT_DATA(type) type
00043
00044 #endif
00045
00046 #endif
00047