mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
- Define EFI_DRIVER_ENTRY.
- Add NtAddDriverEntry, NtDeleteDriverEntry, NtEnumerateDriverEntries, NtModifyBootEntry, NtModifyDriverEntry, NtQueryDriverEntryOrder, NtSetDriverEntryOrder. - These are for EFI (or pseudo-EFI if we ever emulate Vista). svn path=/trunk/; revision=24627
This commit is contained in:
@@ -1116,6 +1116,19 @@ typedef struct _BOOT_ENTRY
|
||||
CHAR OsOptions[1];
|
||||
} BOOT_ENTRY, *PBOOT_ENTRY;
|
||||
|
||||
//
|
||||
// Firmware Driver Entry
|
||||
//
|
||||
typedef struct _EFI_DRIVER_ENTRY
|
||||
{
|
||||
ULONG Version;
|
||||
ULONG Length;
|
||||
ULONG Id;
|
||||
ULONG Attributes;
|
||||
ULONG FriendlyNameOffset;
|
||||
ULONG DriverFilePathOffset;
|
||||
} EFI_DRIVER_ENTRY, *PEFI_DRIVER_ENTRY;
|
||||
|
||||
//
|
||||
// APC Callback for NtCreateFile
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user