4b1c00ba43
Signed-off-by: Chloe M. <chloe@mensia.org>
32 lines
521 B
C
32 lines
521 B
C
/*
|
|
* Copyright (c) 2026, Chloe M.
|
|
* Provided under the BSD-3 clause.
|
|
*
|
|
* Description: Boot protocol abstraction layer
|
|
* Author: Chloe M.
|
|
*/
|
|
|
|
#ifndef _KE_BPAL_H_
|
|
#define _KE_BPAL_H_ 1
|
|
|
|
#include <stdef.h>
|
|
|
|
/*
|
|
* Boot protocol abstraction handle
|
|
*
|
|
* @KernelBase: Kernel load base
|
|
*/
|
|
typedef struct {
|
|
UPTR KernelBase;
|
|
} BPAL_HANDLE;
|
|
|
|
/*
|
|
* Initialize the boot protocol abstraction layer
|
|
*/
|
|
VOID KeBpalInit(VOID);
|
|
|
|
/* Backend init functions */
|
|
VOID KeBpalLimineInit(VOID);
|
|
|
|
#endif /* !_KE_BPAL_H_ */
|