windows-nt/Source/XPSP1/NT/base/efiutil/hello/hello.c

16 lines
252 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
#include <efi.h>
#include <efilib.h>
EFI_STATUS
EfiMain ( IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable)
{
InitializeLib (ImageHandle, SystemTable);
Print(L"Hello World\n");
return EFI_SUCCESS;
}