[HALX86] Implement HalpcGetCmosData and HalpcSetCmosData.

This commit is contained in:
Hermès Bélusca-Maïto 2023-06-19 17:51:31 +02:00
parent 0c16bcd4e8
commit 7e1510eb9c
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0
3 changed files with 60 additions and 50 deletions

View file

@ -101,10 +101,11 @@ HalpGetCmosData(
ULONG
NTAPI
HalpSetCmosData(IN ULONG BusNumber,
IN ULONG SlotNumber,
IN PVOID Buffer,
IN ULONG Length)
HalpSetCmosData(
_In_ ULONG BusNumber,
_In_ ULONG SlotNumber,
_In_reads_bytes_(Length) PVOID Buffer,
_In_ ULONG Length)
{
PUCHAR Ptr = (PUCHAR)Buffer;
ULONG Address = SlotNumber;