mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 00:09:44 +00:00
[KERNEL32][KERNEL32_APITEST] Implement user-mode UEFI / Firmware API (#5149)
- Implement firmware environment variable read/write APIs - Add, fix and improve related definitions and declarations - Add kernel32:UEFIFirmware apitest CORE-11954
This commit is contained in:
parent
961893a712
commit
4c8a2a8815
10 changed files with 618 additions and 102 deletions
|
@ -396,9 +396,9 @@ NTAPI
|
|||
NtQuerySystemEnvironmentValueEx(
|
||||
_In_ PUNICODE_STRING VariableName,
|
||||
_In_ LPGUID VendorGuid,
|
||||
_In_ PVOID Value,
|
||||
_Out_opt_ PVOID Value,
|
||||
_Inout_ PULONG ReturnLength,
|
||||
_Inout_ PULONG Attributes
|
||||
_Out_opt_ PULONG Attributes
|
||||
);
|
||||
|
||||
__kernel_entry
|
||||
|
@ -550,9 +550,9 @@ NTAPI
|
|||
NtSetSystemEnvironmentValueEx(
|
||||
_In_ PUNICODE_STRING VariableName,
|
||||
_In_ LPGUID VendorGuid,
|
||||
_In_ PVOID Value,
|
||||
_Inout_ PULONG ReturnLength,
|
||||
_Inout_ PULONG Attributes
|
||||
_In_reads_bytes_opt_(ValueLength) PVOID Value,
|
||||
_In_ ULONG ValueLength,
|
||||
_In_ ULONG Attributes
|
||||
);
|
||||
|
||||
__kernel_entry
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue