[BOOT] Add boot manager headers

Este commit está contenido en:
2024-05-28 08:30:34 -04:00
padre 1f041b4444
commit d2c2ba65ea
Se han modificado 6 ficheros con 131 adiciones y 1 borrados

34
BOOT/ENVIRON/INC/efilib.h Archivo normal
Ver fichero

@@ -0,0 +1,34 @@
/*++
Copyright (c) 2024, Quinn Stephens.
Provided under the BSD 3-Clause license.
Module Name:
efilib.h
Abstract:
Boot manager EFI library definitions.
--*/
#ifndef _EFILIB_H
#define _EFILIB_H
#include <nt.h>
#include "bootmgr.h"
#include "efi.h"
PBOOT_APPLICATION_PARAMETERS
EfiInitCreateInputParameters (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
);
EFI_STATUS
EfiGetEfiStatusCode (
IN NTSTATUS Status
);
#endif