[REACTOS] Fix misc 64 bit issues

This commit is contained in:
Timo Kreuzer
2019-04-01 14:24:05 +02:00
parent d2feba3d53
commit f9a967b2ae
3 changed files with 26 additions and 24 deletions

View File

@@ -106,7 +106,7 @@ static LPITEMIDLIST _ILReadFromSharedMemory(PCWSTR strField)
if (*strField != L':')
return NULL;
HANDLE hData = (HANDLE) StrToIntW(strField + 1);
HANDLE hData = UlongToHandle(StrToIntW(strField + 1));
PWSTR strSecond = StrChrW(strField + 1, L':');
if (strSecond)