comparePublisher method

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

Implementation

int comparePublisher(Pointer<Utf16> other, Pointer<Int32> isSame) =>
    (ptr.ref.vtable + 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);