File: t4.c

package info (click to toggle)
gnu-efi 3.0a-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 772 kB
  • ctags: 4,116
  • sloc: ansic: 10,304; asm: 312; makefile: 120
file content (13 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <efi.h>
#include <efilib.h>

EFI_STATUS
efi_main (EFI_HANDLE *image, EFI_SYSTEM_TABLE *systab)
{
	UINTN index;

	systab->ConOut->OutputString(systab->ConOut, L"Hello application started\r\n");
	systab->ConOut->OutputString(systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
	systab->BootServices->WaitForEvent(1, &systab->ConIn->WaitForKey, &index);
	return EFI_SUCCESS;
}