| author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
| Wed, 14 Apr 2010 17:02:20 +0300 | |
| branch | RCL_3 |
| changeset 17 | b5f2d4dc5e69 |
| parent 1 | b700e12870ca |
| child 18 | 8cac7c60e3d2 |
| child 19 | 99468bbbf3dc |
| 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