getRow method

int getRow(
  1. int ixTbl,
  2. int rid,
  3. Pointer<Pointer<NativeType>> ppRow
)

Implementation

int getRow(int ixTbl, int rid, Pointer<Pointer> ppRow) =>
    (ptr.ref.vtable + 12)
        .cast<
          Pointer<
            NativeFunction<
              Int32 Function(
                Pointer,
                Uint32 ixTbl,
                Uint32 rid,
                Pointer<Pointer> ppRow,
              )
            >
          >
        >()
        .value
        .asFunction<
          int Function(Pointer, int ixTbl, int rid, Pointer<Pointer> ppRow)
        >()(ptr.ref.lpVtbl, ixTbl, rid, ppRow);