| author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
| Thu, 02 Sep 2010 21:31:36 +0300 | |
| changeset 43 | 0dfd7790d6da |
| parent 28 | 682a0332b10b |
| 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