Curle
4300dc655c
The lib/inc folders are from the GNU-EFI project. The documentation is from the uefi.org site. Yes, I know there are duplicate includes. I have a plan for them.
20 lines
342 B
C
20 lines
342 B
C
#include "lib.h"
|
|
|
|
VOID
|
|
Exit(
|
|
IN EFI_STATUS ExitStatus,
|
|
IN UINTN ExitDataSize,
|
|
IN CHAR16 *ExitData OPTIONAL
|
|
)
|
|
{
|
|
uefi_call_wrapper(BS->Exit,
|
|
4,
|
|
LibImageHandle,
|
|
ExitStatus,
|
|
ExitDataSize,
|
|
ExitData);
|
|
|
|
// Uh oh, Exit() returned?!
|
|
for (;;) { }
|
|
}
|