aboutsummaryrefslogtreecommitdiff
path: root/std/os/uefi/protocols/absolute_pointer_protocol.zig
diff options
context:
space:
mode:
authorNick Erdmann <n@nirf.de>2019-08-10 00:32:43 +0200
committerNick Erdmann <n@nirf.de>2019-08-10 19:14:47 +0200
commit47ce736abec2d97c70eed619b5a6a58edeb4816a (patch)
tree4cc918bfe2412ca8cea57bc32b026a2ba5ce5bed /std/os/uefi/protocols/absolute_pointer_protocol.zig
parent9445b3f057bdeb57cdb02c86b94145ae9a345531 (diff)
downloadzig-47ce736abec2d97c70eed619b5a6a58edeb4816a.tar.gz
zig-47ce736abec2d97c70eed619b5a6a58edeb4816a.zip
std/os/uefi: add basic Event support
Diffstat (limited to 'std/os/uefi/protocols/absolute_pointer_protocol.zig')
-rw-r--r--std/os/uefi/protocols/absolute_pointer_protocol.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/os/uefi/protocols/absolute_pointer_protocol.zig b/std/os/uefi/protocols/absolute_pointer_protocol.zig
index b1fcc4902e..8be52ad7e4 100644
--- a/std/os/uefi/protocols/absolute_pointer_protocol.zig
+++ b/std/os/uefi/protocols/absolute_pointer_protocol.zig
@@ -6,7 +6,7 @@ const Guid = uefi.Guid;
pub const AbsolutePointerProtocol = extern struct {
_reset: extern fn (*const AbsolutePointerProtocol, bool) usize,
_get_state: extern fn (*const AbsolutePointerProtocol, *AbsolutePointerState) usize,
- wait_for_input: *Event,
+ wait_for_input: Event,
mode: *AbsolutePointerMode,
pub fn reset(self: *const AbsolutePointerProtocol, verify: bool) usize {