mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 14:08:22 +00:00
Fix 64bit compilation issues.
svn path=/trunk/; revision=42241
This commit is contained in:
parent
7e526ac7de
commit
3f10e1dc73
1 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ __delayLoadHelper2(PCImgDelayDescr pidd, PImgThunkData pIATEntry)
|
||||||
pProc = __pfnDliNotifyHook2(dliStartProcessing, &dli);
|
pProc = __pfnDliNotifyHook2(dliStartProcessing, &dli);
|
||||||
if (pProc)
|
if (pProc)
|
||||||
{
|
{
|
||||||
pIAT[index].u1.Function = (DWORD)pProc;
|
pIAT[index].u1.Function = (DWORD_PTR)pProc;
|
||||||
return pProc;
|
return pProc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ __delayLoadHelper2(PCImgDelayDescr pidd, PImgThunkData pIATEntry)
|
||||||
// FIXME: handle return value & raise exception
|
// FIXME: handle return value & raise exception
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
pIAT[index].u1.Function = (DWORD)pProc;
|
pIAT[index].u1.Function = (DWORD_PTR)pProc;
|
||||||
|
|
||||||
return pProc;
|
return pProc;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue