move method

int move(
  1. int unit,
  2. int count,
  3. Pointer<Int32> moved
)

Implementation

int move(int unit, int count, Pointer<Int32> moved) => (ptr.ref.vtable + 13)
    .cast<
        Pointer<
            NativeFunction<
                Int32 Function(Pointer, Int32 unit, Int32 count,
                    Pointer<Int32> moved)>>>()
    .value
    .asFunction<
        int Function(Pointer, int unit, int count,
            Pointer<Int32> moved)>()(ptr.ref.lpVtbl, unit, count, moved);