Subversion Repositories HelenOS

Rev

Rev 2726 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2726 vana 1
#include <efi.h>
2
#include <efilib.h>
3
 
4
EFI_STATUS
5
efi_main (EFI_HANDLE *image, EFI_SYSTEM_TABLE *systab)
6
{
7
    UINTN index;
8
 
9
    systab->ConOut->OutputString(systab->ConOut, L"Hello application started\r\n");
10
    systab->ConOut->OutputString(systab->ConOut, L"\r\n\r\n\r\nHit any key to exit\r\n");
11
    systab->BootServices->WaitForEvent(1, &systab->ConIn->WaitForKey, &index);
12
    return EFI_SUCCESS;
13
}