- auto conversion of paths on POSIX platforms - based on patch #1005673
- LoadLanguageFile error message improvement git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3636 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
827b69fbb5
commit
98caca8be1
8 changed files with 184 additions and 51 deletions
|
@ -49,14 +49,20 @@ typedef unsigned long HBRUSH;
|
|||
typedef WORD LANGID;
|
||||
#endif
|
||||
|
||||
// system specific
|
||||
|
||||
#ifdef _WIN32
|
||||
// script path separator
|
||||
|
||||
# define PATH_SEPARATOR_STR "\\"
|
||||
# define PATH_SEPARATOR_C '\\'
|
||||
|
||||
// system specific separator
|
||||
|
||||
#ifdef _WIN32
|
||||
# define PLATFORM_PATH_SEPARATOR_STR "\\"
|
||||
# define PLATFORM_PATH_SEPARATOR_C '\\'
|
||||
#else
|
||||
# define PATH_SEPARATOR_STR "/"
|
||||
# define PATH_SEPARATOR_C '/'
|
||||
# define PLATFORM_PATH_SEPARATOR_STR "/"
|
||||
# define PLATFORM_PATH_SEPARATOR_C '/'
|
||||
#endif
|
||||
|
||||
// attributes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue