GetStatus method

int GetStatus(
  1. Pointer<Int32> state
)

Implementation

int GetStatus(Pointer<Int32> state) => ptr.ref.vtable
    .elementAt(17)
    .cast<
        Pointer<
            NativeFunction<Int32 Function(Pointer, Pointer<Int32> state)>>>()
    .value
    .asFunction<
        int Function(Pointer, Pointer<Int32> state)>()(ptr.ref.lpVtbl, state);