f8ebcfc077
Add char16_t('u') literals Remove wchar_t('L') literals Signed-off-by: Callum Farmer <gmbr3@opensuse.org>
20 lines
419 B
C
20 lines
419 B
C
#include <efi.h>
|
|
#include <efilib.h>
|
|
|
|
EFI_STATUS
|
|
efi_main (EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable)
|
|
{
|
|
INTN Argc, i;
|
|
CHAR16 **Argv;
|
|
|
|
InitializeLib(ImageHandle, SystemTable);
|
|
Argc = GetShellArgcArgv(ImageHandle, &Argv);
|
|
|
|
Print(u"Hello World, started with Argc=%d\n", Argc);
|
|
for (i = 0 ; i < Argc ; ++i)
|
|
Print(u" Argv[%d] = '%s'\n", i, Argv[i]);
|
|
|
|
Print(u"Bye.\n");
|
|
return EFI_SUCCESS;
|
|
}
|