GetPointerTouchInfo method

int GetPointerTouchInfo(
  1. int pointerId,
  2. Pointer<POINTER_TOUCH_INFO> touchInfo
)

Implementation

int GetPointerTouchInfo(
  int pointerId,
  ffi.Pointer<POINTER_TOUCH_INFO> touchInfo,
) {
  return (_GetPointerTouchInfo ??= _dylib.lookupFunction<
      _c_GetPointerTouchInfo,
      _dart_GetPointerTouchInfo>('GetPointerTouchInfo'))(
    pointerId,
    touchInfo,
  );
}