exectos/xtldr/includes/xtbl.h
belliash 9d7491c732
All checks were successful
ci/woodpecker/push/build Pipeline was successful
EFI default console support
2022-08-03 22:36:31 +02:00

35 lines
691 B
C

/**
* PROJECT: ExectOS
* COPYRIGHT: See COPYING.md in the top level directory
* FILE: xtldr/includes/xtbl.h
* DESCRIPTION: Top level header for XTLDR
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
*/
#ifndef __XTLDR_XTBL_H
#define __XTLDR_XTBL_H
#include <xtkmapi.h>
/* EFI Image Handle */
EXTERN EFI_HANDLE EfiImageHandle;
/* EFI System Table */
EXTERN EFI_SYSTEM_TABLE *EfiSystemTable;
VOID
BlConsoleClearScreen();
EFI_STATUS
BlConsoleInitialize();
VOID
BlConsolePutChar(IN USHORT Character);
EFI_STATUS
XtLoaderStartup(IN EFI_HANDLE ImageHandle,
IN PEFI_SYSTEM_TABLE SystemTable);
#endif /* __XTLDR_XTBL_H */