1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#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 (;;) { } }