Last change
on this file since 26ffad7 was
e16e8f2,
checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago
|
bootstuff
|
-
Property mode set to
100644
|
File size:
370 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 | InitializeLib(image, systab); |
---|
8 | Print(L"HelloLib application started\n"); |
---|
9 | Print(L"\n\n\nHit any key to exit this image\n"); |
---|
10 | WaitForSingleEvent(ST->ConIn->WaitForKey, 0); |
---|
11 | uefi_call_wrapper(ST->ConOut->OutputString, 2, ST->ConOut, L"\n\n"); |
---|
12 | return EFI_SUCCESS; |
---|
13 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.