source:
bootcd/isolinux/syslinux-6.03/gnu-efi/gnu-efi-3.0/apps/t2.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 269 bytes |
Line | |
---|---|
1 | #include <efi.h> |
2 | #include <efilib.h> |
3 | |
4 | EFI_STATUS |
5 | efi_main (EFI_HANDLE image, EFI_SYSTEM_TABLE *systab) |
6 | { |
7 | SIMPLE_TEXT_OUTPUT_INTERFACE *conout; |
8 | |
9 | conout = systab->ConOut; |
10 | uefi_call_wrapper(conout->OutputString, 2, conout, L"Hello World!\n\r"); |
11 | |
12 | return EFI_SUCCESS; |
13 | } |
Note: See TracBrowser
for help on using the repository browser.