1993-07-28 11:05:47 +02:00
|
|
|
#ifndef Py_OSDEFS_H
|
|
|
|
#define Py_OSDEFS_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1992-02-26 16:19:31 +01:00
|
|
|
|
|
|
|
/* Operating system dependencies */
|
|
|
|
|
|
|
|
#ifdef macintosh
|
|
|
|
#define SEP ':'
|
|
|
|
#define MAXPATHLEN 256
|
1994-12-14 13:57:12 +01:00
|
|
|
/* Mod by Jack: newline is less likely to occur in filenames than space */
|
|
|
|
#define DELIM '\n'
|
1992-02-26 16:19:31 +01:00
|
|
|
#endif
|
|
|
|
|
1997-12-02 21:34:19 +01:00
|
|
|
/* Mod by chrish: QNX has WATCOM, but isn't DOS */
|
|
|
|
#if !defined(__QNX__)
|
1997-12-05 22:39:25 +01:00
|
|
|
#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2)
|
1992-02-26 16:19:31 +01:00
|
|
|
#define SEP '\\'
|
1996-09-11 22:20:58 +02:00
|
|
|
#define ALTSEP '/'
|
1992-02-26 16:19:31 +01:00
|
|
|
#define MAXPATHLEN 256
|
1992-03-23 19:20:32 +01:00
|
|
|
#define DELIM ';'
|
1992-02-26 16:19:31 +01:00
|
|
|
#endif
|
1997-12-02 21:34:19 +01:00
|
|
|
#endif
|
1992-02-26 16:19:31 +01:00
|
|
|
|
2001-03-02 07:10:17 +01:00
|
|
|
#ifdef RISCOS
|
|
|
|
#define SEP '.'
|
|
|
|
#define MAXPATHLEN 256
|
|
|
|
#define DELIM ','
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1992-03-23 19:20:32 +01:00
|
|
|
/* Filename separator */
|
1992-02-26 16:19:31 +01:00
|
|
|
#ifndef SEP
|
|
|
|
#define SEP '/'
|
|
|
|
#endif
|
|
|
|
|
1992-03-23 19:20:32 +01:00
|
|
|
/* Max pathname length */
|
1992-02-26 16:19:31 +01:00
|
|
|
#ifndef MAXPATHLEN
|
|
|
|
#define MAXPATHLEN 1024
|
|
|
|
#endif
|
1992-03-23 19:20:32 +01:00
|
|
|
|
|
|
|
/* Search path entry delimiter */
|
|
|
|
#ifndef DELIM
|
|
|
|
#define DELIM ':'
|
|
|
|
#endif
|
1993-07-28 11:05:47 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_OSDEFS_H */
|