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(
    hRecipient,
    NotificationFilter,
    Flags,
  );
}