diff options
author | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
---|---|---|
committer | Daniel Wilhelm <daniel@wili.li> | 2014-04-18 17:08:42 +0200 |
commit | c32707148292d104c66276b43796d6057c8c7a5d (patch) | |
tree | bb83513f4aff24153e21a4ec92e34e4c27651b1f /shared/system_constants.h | |
parent | 3.9 (diff) | |
download | FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.gz FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.tar.bz2 FreeFileSync-c32707148292d104c66276b43796d6057c8c7a5d.zip |
3.10
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"; } |