authorgravatar for wozeparrot@gmail.comwozeparrot <wozeparrot@gmail.com> 2020-08-28 15:51:13-04:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2020-08-29 20:24:59+03:00
log00301bbdd3d8e5df3ac147353e7cc9c67f65901f
treef41ba546f5f078968d074a106e37f96036b0fe46
parent3750cc06fda89c076da850a430d39d959ce45a99

fix SimpleTextInputProtocol


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/uefi/protocols/simple_text_input_protocol.zig+1-1
...@@ -11,7 +11,7 @@ const Status = uefi.Status;...@@ -11,7 +11,7 @@ const Status = uefi.Status;
1111
12/// Character input devices, e.g. Keyboard12/// Character input devices, e.g. Keyboard
13pub const SimpleTextInputProtocol = extern struct {13pub const SimpleTextInputProtocol = extern struct {
14 _reset: fn (*const SimpleTextInputProtocol, bool) callconv(.C) usize,14 _reset: fn (*const SimpleTextInputProtocol, bool) callconv(.C) Status,
15 _read_key_stroke: fn (*const SimpleTextInputProtocol, *InputKey) callconv(.C) Status,15 _read_key_stroke: fn (*const SimpleTextInputProtocol, *InputKey) callconv(.C) Status,
16 wait_for_key: Event,16 wait_for_key: Event,
1717