[chore] Use gnu-efi as a part of project
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
#include "lib.h"
|
||||
|
||||
VOID
|
||||
Pause(
|
||||
VOID
|
||||
)
|
||||
// Pause until any key is pressed
|
||||
{
|
||||
EFI_INPUT_KEY Key;
|
||||
EFI_STATUS Status EFI_UNUSED;
|
||||
|
||||
WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
|
||||
Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
|
||||
ASSERT(!EFI_ERROR(Status));
|
||||
}
|
||||
Reference in New Issue
Block a user