[BOOT] Add EFI headers and entry point

This commit is contained in:
2024-05-22 19:56:17 -04:00
parent 88449693d4
commit 8e7c2d02bb
15 changed files with 1395 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
/*++
Copyright (c) 2024, the LibreXP developers.
Provided under the BSD 3-Clause license.
Module Name:
efidevp.h
Abstract:
Provides EFI device path definitions.
--*/
#ifndef _EFIDEVP_H
#define _EFIDEVP_H
typedef struct _EFI_DEVICE_PATH_PROTOCOL {
UINT8 Type;
UINT8 SubType;
UINT8 Length[2];
} EFI_DEVICE_PATH_PROTOCOL;
typedef struct _EFI_DEVICE_PATH_PROTOCOL _EFI_DEVICE_PATH;
typedef EFI_DEVICE_PATH_PROTOCOL EFI_DEVICE_PATH;
#endif