diff options
Diffstat (limited to 'shared/system_constants.h')
-rw-r--r-- | shared/system_constants.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/shared/system_constants.h b/shared/system_constants.h index 6877f5c7..7f34c467 100644 --- a/shared/system_constants.h +++ b/shared/system_constants.h @@ -16,12 +16,14 @@ namespace common // GLOBALS //------------------------------------------------ #ifdef FFS_WIN -const DefaultChar FILE_NAME_SEPARATOR = '\\'; -static const wxChar* const LINE_BREAK = wxT("\r\n"); //internal linkage +const Zchar FILE_NAME_SEPARATOR = '\\'; +const wxChar LINE_BREAK[] = wxT("\r\n"); //internal linkage #elif defined FFS_LINUX -const DefaultChar FILE_NAME_SEPARATOR = '/'; -static const wxChar* const LINE_BREAK = wxT("\n"); +const Zchar FILE_NAME_SEPARATOR = '/'; +const wxChar LINE_BREAK[] = wxT("\n"); #endif + +const char BYTE_ORDER_MARK_UTF8[] = "\xEF\xBB\xBF"; } |