libsidplayfp 1.0.3
|
00001 /* SidTuneCfg.h (template) */ 00002 00003 #ifndef SIDTUNECFG_H 00004 #define SIDTUNECFG_H 00005 00006 #ifdef HAVE_CONFIG_H 00007 # include "config.h" 00008 #endif 00009 00010 /* Minimum load address for real c64 only tunes */ 00011 #define SIDTUNE_R64_MIN_LOAD_ADDR 0x07e8 00012 00013 00014 /* -------------------------------------------------------------------------- 00015 * Don't touch these! 00016 * -------------------------------------------------------------------------- 00017 */ 00018 #undef SIDTUNE_NO_STDIN_LOADER 00019 #undef SIDTUNE_REJECT_UNKNOWN_FIELDS 00020 00021 00022 /* Define the file/path separator(s) that your filesystem uses: 00023 SID_FS_IS_COLON_AND_BACKSLASH, SID_FS_IS_COLON_AND_SLASH, 00024 SID_FS_IS_BACKSLASH, SID_FS_IS_COLON, SID_FS_IS_SLASH */ 00025 #if defined(_WIN32) || defined(_MSDOS) || defined(_OS2) 00026 #define SID_FS_IS_COLON_AND_BACKSLASH_AND_SLASH 00027 #elif defined(__APPLE__) && defined(__MACH__) 00028 #define SID_FS_IS_COLON 00029 #elif defined(AMIGA) 00030 #define SID_FS_IS_COLON_AND_SLASH 00031 #else 00032 #define SID_FS_IS_SLASH 00033 #endif 00034 00035 #endif /* SIDTUNECFG_H */