diff options
author | Heinrich Schuchardt | 2019-05-01 18:25:45 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-05-07 21:10:03 +0200 |
commit | df116e81ea62cf2fcc0f0f89ed328fe27e64ca67 (patch) | |
tree | 6a175ebc265ea67855f2ac7a1c0da7f0a0cfed39 /include/efi_api.h | |
parent | 46e99a9cf7ea06837184da766b5a43065c523d10 (diff) |
efi_loader: implement UnloadImage()
Implement the UnloadImage() boot service
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include/efi_api.h')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 472160cb300..b2ae2797474 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -348,7 +348,7 @@ struct efi_loaded_image { aligned_u64 image_size; unsigned int image_code_type; unsigned int image_data_type; - unsigned long unload; + efi_status_t (EFIAPI *unload)(efi_handle_t image_handle); }; #define EFI_DEVICE_PATH_PROTOCOL_GUID \ |