getTableInfo method
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);