[ITSS] Sync with Wine 3.0. CORE-14225

This commit is contained in:
Amine Khaldi 2018-01-19 00:43:54 +01:00
parent 31fbc03b86
commit 08fb1fc8fe
2 changed files with 5 additions and 10 deletions

View file

@ -922,15 +922,10 @@ static UInt64 _chm_parse_cword(UChar **pEntry)
/* parse a utf-8 string into an ASCII char buffer */ /* parse a utf-8 string into an ASCII char buffer */
static BOOL _chm_parse_UTF8(UChar **pEntry, UInt64 count, WCHAR *path) static BOOL _chm_parse_UTF8(UChar **pEntry, UInt64 count, WCHAR *path)
{ {
/* MJM - Modified to return real Unicode strings */ DWORD length = MultiByteToWideChar(CP_UTF8, 0, (char *)*pEntry, count, path, CHM_MAX_PATHLEN);
while (count != 0) path[length] = '\0';
{ *pEntry += count;
*path++ = (*(*pEntry)++); return !!length;
--count;
}
*path = '\0';
return TRUE;
} }
/* parse a PMGL entry into a chmUnitInfo struct; return 1 on success. */ /* parse a PMGL entry into a chmUnitInfo struct; return 1 on success. */

View file

@ -84,7 +84,7 @@ reactos/dll/win32/initpki # Synced to WineStaging-2.9
reactos/dll/win32/inseng # Synced to Wine-3.0 reactos/dll/win32/inseng # Synced to Wine-3.0
reactos/dll/win32/iphlpapi # Out of sync reactos/dll/win32/iphlpapi # Out of sync
reactos/dll/win32/itircl # Synced to WineStaging-2.9 reactos/dll/win32/itircl # Synced to WineStaging-2.9
reactos/dll/win32/itss # Synced to WineStaging-2.9 reactos/dll/win32/itss # Synced to Wine-3.0
reactos/dll/win32/jscript # Synced to WineStaging-2.16 reactos/dll/win32/jscript # Synced to WineStaging-2.16
reactos/dll/win32/jsproxy # Synced to WineStaging-2.16 reactos/dll/win32/jsproxy # Synced to WineStaging-2.16
reactos/dll/win32/loadperf # Synced to WineStaging-2.9 reactos/dll/win32/loadperf # Synced to WineStaging-2.9