getTableInfo method

int getTableInfo(
  1. int ixTbl,
  2. Pointer<Uint32> pcbRow,
  3. Pointer<Uint32> pcRows,
  4. Pointer<Uint32> pcCols,
  5. Pointer<Uint32> piKey,
  6. Pointer<Pointer<Int8>> ppName,
)

Implementation

int getTableInfo(
  int ixTbl,
  Pointer<Uint32> pcbRow,
  Pointer<Uint32> pcRows,
  Pointer<Uint32> pcCols,
  Pointer<Uint32> piKey,
  Pointer<Pointer<Int8>> ppName,
) => (ptr.ref.vtable + 9)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Uint32 ixTbl,
            Pointer<Uint32> pcbRow,
            Pointer<Uint32> pcRows,
            Pointer<Uint32> pcCols,
            Pointer<Uint32> piKey,
            Pointer<Pointer<Int8>> ppName,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        int ixTbl,
        Pointer<Uint32> pcbRow,
        Pointer<Uint32> pcRows,
        Pointer<Uint32> pcCols,
        Pointer<Uint32> piKey,
        Pointer<Pointer<Int8>> ppName,
      )
    >()(ptr.ref.lpVtbl, ixTbl, pcbRow, pcRows, pcCols, piKey, ppName);