GetPointerFramePenInfo method

int GetPointerFramePenInfo(
  1. int pointerId,
  2. Pointer<Uint32> pointerCount,
  3. Pointer<POINTER_PEN_INFO> penInfo
)

Implementation

int GetPointerFramePenInfo(
  int pointerId,
  ffi.Pointer<ffi.Uint32> pointerCount,
  ffi.Pointer<POINTER_PEN_INFO> penInfo,
) {
  return (_GetPointerFramePenInfo ??= _dylib.lookupFunction<
      _c_GetPointerFramePenInfo,
      _dart_GetPointerFramePenInfo>('GetPointerFramePenInfo'))(
    pointerId,
    pointerCount,
    penInfo,
  );
}