mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-24 11:45:27 +01:00
391ed70310
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.
24 lines
431 B
C
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_ */
|