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