| author | Christian Morlok <symbian.org@christianmorlok.de> |
| Sat, 27 Mar 2010 01:00:02 +0100 | |
| branch | v5backport |
| changeset 36 | 3310c3399a08 |
| parent 21 | 11157e26c4a7 |
| permissions | -rw-r--r-- |
// Cdlcompat.h #ifndef CDLCOMPAT_H #define CDLCOMPAT_H /* _MSC_VER for checking VC6, so that we can keep this library still compilable using `tools'. */ #if (defined(__MSVCRT__) || defined(_MSC_VER)) #define CDL_W32 #endif // path separator /* #ifdef CDL_W32 */ /* #define PATHSEP "\\" */ /* #define PATHSEPCHAR '\\' */ /* #else */ #define PATHSEP "/" #define PATHSEPCHAR '/' /* #endif */ const char FORWARDSLASH = '/'; const char BACKSLASH = '\\'; #endif