blob: 8190a752eaeb464d354754dd17ddcb72bb9ac9f0 [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_OSDEFS_H
2#define Py_OSDEFS_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossum355a33d1992-02-26 15:19:31 +00007
8/* Operating system dependencies */
9
Guido van Rossum7bf22de1997-12-02 20:34:19 +000010/* Mod by chrish: QNX has WATCOM, but isn't DOS */
11#if !defined(__QNX__)
Guido van Rossum60aff2c1997-12-05 21:39:25 +000012#if defined(MS_WINDOWS) || defined(__BORLANDC__) || defined(__WATCOMC__) || defined(__DJGPP__) || defined(PYOS_OS2)
Andrew MacIntyre5e090fc2002-02-26 11:20:01 +000013#if defined(PYOS_OS2) && defined(PYCC_GCC)
14#define MAXPATHLEN 260
15#define SEP '/'
16#define ALTSEP '\\'
17#else
Guido van Rossum355a33d1992-02-26 15:19:31 +000018#define SEP '\\'
Guido van Rossumc8ce5711996-09-11 20:20:58 +000019#define ALTSEP '/'
Guido van Rossum355a33d1992-02-26 15:19:31 +000020#define MAXPATHLEN 256
Andrew MacIntyre5e090fc2002-02-26 11:20:01 +000021#endif
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000022#define DELIM ';'
Guido van Rossum355a33d1992-02-26 15:19:31 +000023#endif
Guido van Rossum7bf22de1997-12-02 20:34:19 +000024#endif
Guido van Rossum355a33d1992-02-26 15:19:31 +000025
Guido van Rossumf0ee4b22001-03-02 06:10:17 +000026#ifdef RISCOS
27#define SEP '.'
28#define MAXPATHLEN 256
29#define DELIM ','
30#endif
31
32
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000033/* Filename separator */
Guido van Rossum355a33d1992-02-26 15:19:31 +000034#ifndef SEP
35#define SEP '/'
36#endif
37
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000038/* Max pathname length */
Guido van Rossum355a33d1992-02-26 15:19:31 +000039#ifndef MAXPATHLEN
40#define MAXPATHLEN 1024
41#endif
Guido van Rossum9b9ccd31992-03-23 18:20:32 +000042
43/* Search path entry delimiter */
44#ifndef DELIM
45#define DELIM ':'
46#endif
Guido van Rossuma3309961993-07-28 09:05:47 +000047
48#ifdef __cplusplus
49}
50#endif
51#endif /* !Py_OSDEFS_H */