blob: 84c1ae858b784f94ed459bd5cf37562667496741 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef SYSTEMCONSTANTS_H_INCLUDED
#define SYSTEMCONSTANTS_H_INCLUDED
#include "zstring.h"
namespace globalFunctions
{
//------------------------------------------------
// GLOBALS
//------------------------------------------------
#ifdef FFS_WIN
const DefaultChar FILE_NAME_SEPARATOR = '\\';
static const DefaultChar* const LINE_BREAK = L"\r\n"; //internal linkage
#elif defined FFS_LINUX
const DefaultChar FILE_NAME_SEPARATOR = '/';
static const DefaultChar* const LINE_BREAK = "\n";
#endif
}
#endif // SYSTEMCONSTANTS_H_INCLUDED
|