checkNotSupported method

int checkNotSupported(
  1. VARIANT value,
  2. Pointer<Int32> isNotSupported
)

Implementation

int checkNotSupported(VARIANT value, Pointer<Int32> isNotSupported) =>
    (ptr.ref.vtable + 53)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, VARIANT value,
                            Pointer<Int32> isNotSupported)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer, VARIANT value, Pointer<Int32> isNotSupported)>()(
        ptr.ref.lpVtbl, value, isNotSupported);