diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-15 14:47:25 +0200 |
---|---|---|
committer | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2019-06-20 22:26:16 +0000 |
commit | 21b6b540d607a8731b311ae798918ff8c19f579d (patch) | |
tree | f4d9fd21168adfd6f7a0d2b69a858d4fa30297b2 | |
parent | 97cf20861ac2a359bcde930d4ab17cec70da81f7 (diff) |
efi_loader: EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL definition
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset() is a function and not a void *
pointer.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | include/efi_api.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index d7d95edd4d..4de5d208f5 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -577,7 +577,9 @@ struct simple_text_output_mode { #define EFI_ATTR_BG(attr) (((attr) >> 4) & 0x7) struct efi_simple_text_output_protocol { - void *reset; + efi_status_t (EFIAPI *reset)( + struct efi_simple_text_output_protocol *this, + char extended_verification); efi_status_t (EFIAPI *output_string)( struct efi_simple_text_output_protocol *this, const efi_string_t str); |