RegisterDeviceNotificationA method

Pointer<Void> RegisterDeviceNotificationA(
  1. Pointer<Void> hRecipient,
  2. Pointer<Void> NotificationFilter,
  3. int Flags
)

Implementation

ffi.Pointer<ffi.Void> RegisterDeviceNotificationA(
  ffi.Pointer<ffi.Void> hRecipient,
  ffi.Pointer<ffi.Void> NotificationFilter,
  int Flags,
) {
  return (_RegisterDeviceNotificationA ??= _dylib.lookupFunction<
      _c_RegisterDeviceNotificationA,
      _dart_RegisterDeviceNotificationA>('RegisterDeviceNotificationA'))(
    hRecipient,
    NotificationFilter,
    Flags,
  );
}