Implement BlGetXtLdrProtocol()
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 46s
Builds / ExectOS (i686) (push) Successful in 26s

This commit is contained in:
2024-01-01 14:18:50 +01:00
parent e728b9d299
commit f4871801a7
3 changed files with 94 additions and 0 deletions

23
sdk/xtdk/blfuncs.h Normal file
View File

@@ -0,0 +1,23 @@
/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: sdk/xtdk/blfuncs.h
* DESCRIPTION: XT Boot Manager routines
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTDK_BLFUNCS_H
#define __XTDK_BLFUNCS_H
#include <xttypes.h>
#include <xtuefi.h>
/* XT BootLoader routines forward references */
XTCDECL
EFI_STATUS
BlGetXtLdrProtocol(IN PEFI_SYSTEM_TABLE SystemTable,
IN EFI_HANDLE ImageHandle,
OUT PXTBL_LOADER_PROTOCOL *ProtocolHandler);
#endif /* __XTDK_BLFUNCS_H */

View File

@@ -45,3 +45,4 @@
/* Boot Manager specific structures */
#include <bltypes.h>
#include <blfuncs.h>