Fully implemented UEFI Driver Model protocols

This commit is contained in:
Jozef Nagy 2024-03-29 23:27:59 +01:00
parent b335041b4f
commit 46942dc800
No known key found for this signature in database
GPG key ID: 5B49DC29F09685D6
12 changed files with 337 additions and 0 deletions

View file

@ -49,6 +49,17 @@ typedef UINT64 EFI_VIRTUAL_ADDRESS;
// Task Priority Level
typedef UINTN EFI_TPL;
// String ID
typedef UINT16 EFI_STRING_ID;
// HII Handle
typedef VOID *EFI_HII_HANDLE;
// EFI Mac Address
typedef struct {
UINT8 Addr[32];
} EFI_MAC_ADDRESS;
// EFI Status Codes
#define EFI_SUCCESS (0x00)
#define EFI_LOAD_ERROR (0x8000000000000001)