UnregisterHotKey method

int UnregisterHotKey(
  1. Pointer<HWND__> hWnd,
  2. int id
)

Implementation

int UnregisterHotKey(
  ffi.Pointer<HWND__> hWnd,
  int id,
) {
  return (_UnregisterHotKey ??=
      _dylib.lookupFunction<_c_UnregisterHotKey, _dart_UnregisterHotKey>(
          'UnregisterHotKey'))(
    hWnd,
    id,
  );
}