pause.c 300 B

123456789101112131415
  1. #include "lib.h"
  2. VOID
  3. Pause(
  4. VOID
  5. )
  6. // Pause until any key is pressed
  7. {
  8. EFI_INPUT_KEY Key;
  9. EFI_STATUS Status EFI_UNUSED;
  10. WaitForSingleEvent(ST->ConIn->WaitForKey, 0);
  11. Status = uefi_call_wrapper(ST->ConIn->ReadKeyStroke, 2, ST->ConIn, &Key);
  12. ASSERT(!EFI_ERROR(Status));
  13. }