Curle
d588e232c4
This branch has been dedicated to purely the UEFI bootloader. As such, all other code has been removed. This code can be compiled with Visual Studio, gcc or llvm.
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 (;;) { }
|
|
}
|