getHasCurrent method

int getHasCurrent(
  1. Pointer<Int32> hasCurrent
)

Implementation

int getHasCurrent(Pointer<Int32> hasCurrent) => (ptr.ref.vtable + 4)
    .cast<
      Pointer<
        NativeFunction<Int32 Function(Pointer, Pointer<Int32> hasCurrent)>
      >
    >()
    .value
    .asFunction<int Function(Pointer, Pointer<Int32> hasCurrent)>()(
  ptr.ref.lpVtbl,
  hasCurrent,
);