[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:
Adam Słaboń 2023-07-20 21:44:44 +02:00 committed by GitHub
parent 27ebedb367
commit ce2d4740a6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 22 additions and 29 deletions

View file

@ -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

View file

@ -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