Add string manipulation support
All checks were successful
Builds / ExectOS (amd64) (push) Successful in 26s
Builds / ExectOS (i686) (push) Successful in 26s

This commit is contained in:
2023-12-03 00:24:56 +01:00
parent f0fbeadc1c
commit 78ac03b039
6 changed files with 560 additions and 33 deletions

View File

@@ -12,38 +12,7 @@
#include <xtbmapi.h>
#include <xtver.h>
/* EFI Image Handle */
EXTERN EFI_HANDLE EfiImageHandle;
/* EFI System Table */
EXTERN PEFI_SYSTEM_TABLE EfiSystemTable;
/* XTLDR routines forward references */
XTCDECL
VOID
BmClearScreen();
XTCDECL
VOID
BmDisableCursor();
XTCDECL
VOID
BmEnableCursor();
XTCDECL
VOID
BmInitializeConsole();
XTCDECL
VOID
BmPrintChar(IN USHORT Character);
XTCDECL
EFI_STATUS
BmStartXtLoader(IN EFI_HANDLE ImageHandle,
IN PEFI_SYSTEM_TABLE SystemTable);
#include <globals.h>
#include <bootman.h>
#endif /* __XTLDR_XTBM_H */