GetPointerDevice method

int GetPointerDevice(
  1. Pointer<Void> device,
  2. Pointer<POINTER_DEVICE_INFO> pointerDevice
)

Implementation

int GetPointerDevice(
  ffi.Pointer<ffi.Void> device,
  ffi.Pointer<POINTER_DEVICE_INFO> pointerDevice,
) {
  return (_GetPointerDevice ??=
      _dylib.lookupFunction<_c_GetPointerDevice, _dart_GetPointerDevice>(
          'GetPointerDevice'))(
    device,
    pointerDevice,
  );
}