RegisterPointerDeviceNotifications method

int RegisterPointerDeviceNotifications(
  1. Pointer<HWND__> window,
  2. int notifyRange
)

Implementation

int RegisterPointerDeviceNotifications(
  ffi.Pointer<HWND__> window,
  int notifyRange,
) {
  return (_RegisterPointerDeviceNotifications ??= _dylib.lookupFunction<
          _c_RegisterPointerDeviceNotifications,
          _dart_RegisterPointerDeviceNotifications>(
      'RegisterPointerDeviceNotifications'))(
    window,
    notifyRange,
  );
}