CloverBootloader/rEFIt_UEFI/Platform/BasicIO.h
jief666 391ed70310 Fix bug in ConfigPlist when an unknown key happens is ACPI/DSDT/Fixes.
Light refactor of PauseForKey.
gSettings.CPU.SavingMode is ConfigManager.
PlatformPosix : do not redefine abort(), use abort() instead of
CpuDeadLoop().
Format debug.log file name.
Use malloc/free instead of AllocateZeroPool/FreePool for validator
compatibility.
Use strlen instead of AsciiStrLen for validator compatibility.
getRBr() and getRPlt() : make them independent from global var.
Fix wrong line number in XmlLiteParser.
2021-05-04 13:03:40 +03:00

24 lines
431 B
C

/*
* BasicIO.h
*
* Created on: 28 Mar 2020
* Author: jief
*/
#ifndef PLATFORM_BASICIO_H_
#define PLATFORM_BASICIO_H_
BOOLEAN ReadAllKeyStrokes(void);
void PauseForKey(const XString8& msg);
//void DebugPause(void);
void EndlessIdleLoop(void);
BOOLEAN CheckFatalError(IN EFI_STATUS Status, IN CONST CHAR16 *where);
BOOLEAN CheckError(IN EFI_STATUS Status, IN CONST CHAR16 *where);
#endif /* PLATFORM_BASICIO_H_ */