reset
Resets the pointer device hardware.
Function parameters
Parameters
- self:*AbsolutePointer
- verify:bool
Protocol for touchscreens.
Types
- AbsolutePointer
- Protocol for touchscreens.
Source
Implementation
pub fn reset(self: *AbsolutePointer, verify: bool) ResetError!void {
switch (self._reset(self, verify)) {
.success => {},
.device_error => return Error.DeviceError,
else => |status| return uefi.unexpectedStatus(status),
}
}