1 /* $NetBSD: t4.c,v 1.1.1.1 2014/04/01 16:16:06 jakllsch Exp $ */ 2 3 #include <efi.h> 4 #include <efilib.h> 5 6 EFI_STATUS 7 efi_main (EFI_HANDLE *image, EFI_SYSTEM_TABLE *systab) 8 { 9 UINTN index; 10 11 uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"Hello application started\r\n"); 12 uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n"); 13 uefi_call_wrapper(systab->BootServices->WaitForEvent, 3, 1, &systab->ConIn->WaitForKey, &index); 14 return EFI_SUCCESS; 15 } 16