xref: /netbsd-src/sys/external/bsd/gnu-efi/dist/apps/t4.c (revision 7bdf38e5b7a28439665f2fdeff81e36913eef7dd)
1 /*	$NetBSD: t4.c,v 1.1.1.2 2018/08/16 18:17:47 jmcneill 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         InitializeLib(image, systab);
12 	uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"Hello application started\r\n");
13 	uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
14 	uefi_call_wrapper(systab->BootServices->WaitForEvent, 3, 1, &systab->ConIn->WaitForKey, &index);
15 	return EFI_SUCCESS;
16 }
17