OpenCore  1.0.4
OpenCore Bootloader
Loading...
Searching...
No Matches
HelloWorld.c
Go to the documentation of this file.
1
6#include <Library/UefiBootServicesTableLib.h>
7#include <Library/DebugLib.h>
8
9STATIC
10EFI_STATUS
11EFIAPI
13 IN EFI_HANDLE ImageHandle,
14 IN EFI_SYSTEM_TABLE *SystemTable
15 )
16{
17 DEBUG ((DEBUG_ERROR, "Hello world\n"));
18 return EFI_SUCCESS;
19}
20
21int
23 void
24 )
25{
27
28 return 0;
29}
STATIC EFI_STATUS EFIAPI UefiMain(IN EFI_HANDLE ImageHandle, IN EFI_SYSTEM_TABLE *SystemTable)
Definition HelloWorld.c:12
int ENTRY_POINT(void)
Definition HelloWorld.c:22
EFI_SYSTEM_TABLE * gST
EFI_HANDLE gImageHandle