00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef _GN_CW__
00012 #define _GN_CW__
00013
00014 #if __option(profile)
00015 #error "profiling is not supported in debug versions"
00016 #else
00017 #ifndef GN_GUI
00018 #ifdef __cplusplus
00019 #if __POWERPC__
00020 #include "gn_PPC++_d.mch"
00021 #elif __INTEL__
00022 #include "gn_x86++_d.mch"
00023 #elif __CFM68K__
00024 #include "gn_cfm++_d.mch"
00025 #else
00026 #include "gn_68k++_d.mch"
00027 #endif
00028 #else
00029 #if __POWERPC__
00030 #include "gn_PPC_d.mch"
00031 #elif __INTEL__
00032 #include "gn_x86_d.mch"
00033 #elif __CFM68K__
00034 #include "gn_cfm_d.mch"
00035 #else
00036 #include "gn_68k_d.mch"
00037 #endif
00038 #endif
00039 #endif //ndef GN_GUI
00040 #endif
00041
00042 #endif
00043