ComparePublisher method

int ComparePublisher(
  1. Pointer<Utf16> other,
  2. Pointer<Int32> isSame
)

Implementation

int ComparePublisher(Pointer<Utf16> other, Pointer<Int32> isSame) => ptr
    .ref.vtable
    .elementAt(8)
    .cast<
        Pointer<
            NativeFunction<
                Int32 Function(
                    Pointer, Pointer<Utf16> other, Pointer<Int32> isSame)>>>()
    .value
    .asFunction<
        int Function(Pointer, Pointer<Utf16> other,
            Pointer<Int32> isSame)>()(ptr.ref.lpVtbl, other, isSame);