Function unregisterKeyNotify [src]

Remove the notification that was previously registered.

Prototype

pub fn unregisterKeyNotify( self: *SimpleTextInputEx, handle: uefi.Handle, ) UnregisterKeyNotifyError!void

Parameters

self: *SimpleTextInputExhandle: uefi.Handle

Possible Errors

InvalidParameter
Unexpected UnexpectedError

Source

pub fn unregisterKeyNotify( self: *SimpleTextInputEx, handle: uefi.Handle, ) UnregisterKeyNotifyError!void { switch (self._unregister_key_notify(self, handle)) { .success => {}, .invalid_parameter => return Error.InvalidParameter, else => |status| return uefi.unexpectedStatus(status), } }