summaryrefslogtreecommitdiff
path: root/shared/systemConstants.h
blob: bae23d5a709641c146d34bbe4c6bf957936897f5 (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"
#include <wx/string.h>

namespace globalFunctions
{
//------------------------------------------------
//      GLOBALS
//------------------------------------------------
#ifdef FFS_WIN
const DefaultChar FILE_NAME_SEPARATOR = '\\';
static const wxChar* const LINE_BREAK = wxT("\r\n"); //internal linkage
#elif defined FFS_LINUX
const DefaultChar FILE_NAME_SEPARATOR = '/';
static const wxChar* const LINE_BREAK = wxT("\n");
#endif
}


#endif // SYSTEMCONSTANTS_H_INCLUDED
bgstack15