1 /*--------------------------------------------------------------------------
2 Name: PropertyDef.h
3 Project: xmlBlaster.org
4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
5 Comment: Handling the Client data, defines operating system specific stuff.
6 ---------------------------------------------------------------------------*/
7
8 #ifndef _UTIL_PROPERTYDEF_H
9 #define _UTIL_PROPERTYDEF_H
10
11 // _WIN32 is deprecated, use _WINDOWS
12 #if defined(_WIN32) || defined(_WINDOWS)
13 # define FILE_SEP "\\"
14 # define PATH_SEP ";"
15 #else
16 # define FILE_SEP "/"
17 # define PATH_SEP ":"
18 # define _TERM_WITH_COLORS_ 1 // UNIX xterm can display colors (escape sequences) for nicer logging output
19 #endif
20
21 #endif
syntax highlighted by Code2HTML, v. 0.9.1