mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-27 12:15:19 +01:00
40 lines
524 B
C
40 lines
524 B
C
|
/*
|
||
|
Headers collection for procedures
|
||
|
*/
|
||
|
|
||
|
#ifndef __BOOTLOG__H__
|
||
|
#define __BOOTLOG__H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include <Protocol/SimpleFileSystem.h> // for EFI_FILE_HANDLE
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} // extern "C"
|
||
|
#endif
|
||
|
|
||
|
VOID
|
||
|
InitBooterLog (VOID);
|
||
|
|
||
|
EFI_STATUS
|
||
|
SetupBooterLog (
|
||
|
BOOLEAN AllowGrownSize
|
||
|
);
|
||
|
|
||
|
EFI_STATUS
|
||
|
SaveBooterLog (
|
||
|
IN EFI_FILE_HANDLE BaseDir OPTIONAL,
|
||
|
IN CONST CHAR16 *FileName
|
||
|
);
|
||
|
|
||
|
VOID
|
||
|
EFIAPI
|
||
|
DebugLog (
|
||
|
IN INTN DebugMode,
|
||
|
IN CONST CHAR8 *FormatString, ...);
|
||
|
|
||
|
#endif
|