mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 22:05:49 +00:00
[DLLS] Fix 64 bit issues
This commit is contained in:
parent
6f13066647
commit
0f8439aa71
23 changed files with 88 additions and 81 deletions
|
@ -506,7 +506,7 @@ EnumProcesses(DWORD *lpidProcess,
|
|||
*/
|
||||
if (Count < cb / sizeof(DWORD))
|
||||
{
|
||||
lpidProcess[Count] = (DWORD)ProcInfo->UniqueProcessId;
|
||||
lpidProcess[Count] = HandleToUlong(ProcInfo->UniqueProcessId);
|
||||
Count++;
|
||||
}
|
||||
|
||||
|
@ -840,7 +840,7 @@ GetMappedFileNameW(HANDLE hProcess,
|
|||
DWORD nSize)
|
||||
{
|
||||
DWORD Len;
|
||||
DWORD OutSize;
|
||||
SIZE_T OutSize;
|
||||
NTSTATUS Status;
|
||||
struct
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue