mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:12:55 +00:00
[BOOTLIB] Fix 64 bit issues (#433)
This commit is contained in:
parent
8bbbab534a
commit
3be4081607
18 changed files with 85 additions and 58 deletions
|
@ -1385,6 +1385,14 @@ MmMdInitializeListHead (
|
|||
List->Type = 0;
|
||||
}
|
||||
|
||||
FORCEINLINE
|
||||
PVOID
|
||||
PhysicalAddressToPtr (
|
||||
_In_ PHYSICAL_ADDRESS PhysicalAddress)
|
||||
{
|
||||
return (PVOID)(ULONG_PTR)PhysicalAddress.QuadPart;
|
||||
}
|
||||
|
||||
/* INITIALIZATION ROUTINES ***************************************************/
|
||||
|
||||
NTSTATUS
|
||||
|
@ -2369,7 +2377,7 @@ BlpMmCreateBlockAllocator (
|
|||
|
||||
PVOID
|
||||
BlMmAllocateHeap (
|
||||
_In_ ULONG Size
|
||||
_In_ SIZE_T Size
|
||||
);
|
||||
|
||||
NTSTATUS
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue