24 lines
609 B
Plaintext
24 lines
609 B
Plaintext
/* SidTuneCfg.h (template) */
|
|
|
|
#ifndef SIDTUNECFG_H
|
|
#define SIDTUNECFG_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
// Define the file/path separator(s) that your filesystem uses:
|
|
// SID_FS_IS_COLON_AND_BACKSLASH, SID_FS_IS_COLON_AND_SLASH,
|
|
// SID_FS_IS_BACKSLASH, SID_FS_IS_COLON, SID_FS_IS_SLASH
|
|
#if defined(_WIN32) || defined(_MSDOS) || defined(_OS2)
|
|
# define SID_FS_IS_COLON_AND_BACKSLASH_AND_SLASH
|
|
#elif defined(__APPLE__) && defined(__MACH__)
|
|
# define SID_FS_IS_COLON
|
|
#elif defined(AMIGA)
|
|
# define SID_FS_IS_COLON_AND_SLASH
|
|
#else
|
|
# define SID_FS_IS_SLASH
|
|
#endif
|
|
|
|
#endif /* SIDTUNECFG_H */
|