mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 10:01:43 +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
|
@ -13,6 +13,9 @@
|
|||
/* DATA VARIABLES ************************************************************/
|
||||
|
||||
PBL_ARCH_CONTEXT CurrentExecutionContext;
|
||||
PBL_MM_RELOCATE_SELF_MAP BlMmRelocateSelfMap;
|
||||
PBL_MM_MOVE_VIRTUAL_ADDRESS_RANGE BlMmMoveVirtualAddressRange;
|
||||
PBL_MM_ZERO_VIRTUAL_ADDRESS_RANGE BlMmZeroVirtualAddressRange;
|
||||
|
||||
/* FUNCTIONS *****************************************************************/
|
||||
|
||||
|
@ -50,3 +53,13 @@ Archx86TransferTo32BitApplicationAsm (VOID)
|
|||
EfiPrintf(L" Archx86TransferTo32BitApplicationAsm NOT IMPLEMENTED for this platform\r\n");
|
||||
}
|
||||
|
||||
NTSTATUS
|
||||
OslArchTransferToKernel(
|
||||
_In_ struct _LOADER_PARAMETER_BLOCK *LoaderBlock,
|
||||
_In_ PVOID KernelEntrypoint
|
||||
)
|
||||
{
|
||||
EfiPrintf(L" OslArchTransferToKernel NOT IMPLEMENTED for this platform\r\n");
|
||||
return STATUS_NOT_IMPLEMENTED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue