mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 12:11:42 +00:00
[SDK][HAL] Enable x86Bios on x86 (#5454)
This will be needed for compatibility with x86 Windows Vista/7 videoprt.sys builds. Might be also useful in future for platforms (x86 , ...) where V86 mode is not available or buggy. CORE-11954, CORE-18185
This commit is contained in:
parent
27ebedb367
commit
ce2d4740a6
10 changed files with 22 additions and 29 deletions
|
@ -298,8 +298,6 @@ HalSetTimeIncrement(
|
|||
//
|
||||
// BIOS call API
|
||||
//
|
||||
#ifdef _M_AMD64
|
||||
|
||||
NTSTATUS
|
||||
NTAPI
|
||||
x86BiosAllocateBuffer(
|
||||
|
@ -335,7 +333,5 @@ x86BiosCall(
|
|||
_In_ ULONG InterruptNumber,
|
||||
_Inout_ PX86_BIOS_REGISTERS Registers);
|
||||
|
||||
#endif // _M_AMD64
|
||||
|
||||
#endif // NTOS_MODE_USER
|
||||
#endif // _HALFUNCS_H
|
||||
|
|
|
@ -289,8 +289,6 @@ extern NTHALAPI PUCHAR KdComPortInUse;
|
|||
//
|
||||
// BIOS call structure
|
||||
//
|
||||
#ifdef _M_AMD64
|
||||
|
||||
typedef struct _X86_BIOS_REGISTERS
|
||||
{
|
||||
ULONG Eax;
|
||||
|
@ -304,8 +302,6 @@ typedef struct _X86_BIOS_REGISTERS
|
|||
USHORT SegEs;
|
||||
} X86_BIOS_REGISTERS, *PX86_BIOS_REGISTERS;
|
||||
|
||||
#endif // _M_AMD64
|
||||
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue