Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > ebe372b10878800fe69806df64e3d558 > files > 55

gnu-efi-3.0c-4mdv2010.0.i586.rpm

#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;
}