GetPointerDeviceRects method

int GetPointerDeviceRects(
  1. Pointer<Void> device,
  2. Pointer<LPRECT> pointerDeviceRect,
  3. Pointer<LPRECT> displayRect
)

Implementation

int GetPointerDeviceRects(
  ffi.Pointer<ffi.Void> device,
  ffi.Pointer<LPRECT> pointerDeviceRect,
  ffi.Pointer<LPRECT> displayRect,
) {
  return (_GetPointerDeviceRects ??= _dylib.lookupFunction<
      _c_GetPointerDeviceRects,
      _dart_GetPointerDeviceRects>('GetPointerDeviceRects'))(
    device,
    pointerDeviceRect,
    displayRect,
  );
}