Subversion Repositories HelenOS

Rev

Rev 2726 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2726 Rev 2782
1
#include <efi.h>
1
#include <efi.h>
2
#include <efilib.h>
2
#include <efilib.h>
3
 
3
 
4
EFI_STATUS
4
EFI_STATUS
5
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
5
efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab)
6
{
6
{
7
    SIMPLE_TEXT_OUTPUT_INTERFACE *conout;
7
    SIMPLE_TEXT_OUTPUT_INTERFACE *conout;
8
 
8
 
9
    conout = systab->ConOut;
9
    conout = systab->ConOut;
10
    conout->OutputString(conout, L"Hello World!\n\r");
10
    conout->OutputString(conout, L"Hello World!\n\r");
11
 
11
 
12
    return EFI_SUCCESS;
12
    return EFI_SUCCESS;
13
}
13
}
14
 
14