2013-01-31 01:25:25 +04:00
|
|
|
#include <efi.h>
|
|
|
|
#include <efilib.h>
|
|
|
|
|
|
|
|
EFI_STATUS
|
|
|
|
efi_main (EFI_HANDLE *image, EFI_SYSTEM_TABLE *systab)
|
|
|
|
{
|
|
|
|
UINTN index;
|
|
|
|
|
2016-03-04 00:55:26 +03:00
|
|
|
InitializeLib(image, systab);
|
2013-01-31 01:25:25 +04:00
|
|
|
uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"Hello application started\r\n");
|
|
|
|
uefi_call_wrapper(systab->ConOut->OutputString, 2, systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
|
|
|
|
uefi_call_wrapper(systab->BootServices->WaitForEvent, 3, 1, &systab->ConIn->WaitForKey, &index);
|
|
|
|
return EFI_SUCCESS;
|
|
|
|
}
|