MakeNSISW should request UTF16LE output
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6370 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
b8aee8098d
commit
7d930ed452
3 changed files with 43 additions and 34 deletions
|
@ -227,6 +227,10 @@ typedef DWORDLONG ULONGLONG,*PULONGLONG;
|
|||
# define IS_INTRESOURCE(_r) (((ULONG_PTR)(_r) >> 16) == 0)
|
||||
#endif
|
||||
|
||||
#ifndef IS_HIGH_SURROGATE
|
||||
# define IS_HIGH_SURROGATE(wch) (((wch) >= 0xd800) && ((wch) <= 0xdbff))
|
||||
#endif
|
||||
|
||||
// functions
|
||||
|
||||
// Anders: MSVC's swprintf is non standard, use _snwprintf when you really mean swprintf
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue