getInterfaceImplProps method

int getInterfaceImplProps(
  1. int iiImpl,
  2. Pointer<Uint32> pClass,
  3. Pointer<Uint32> ptkIface
)

Implementation

int getInterfaceImplProps(
        int iiImpl, Pointer<Uint32> pClass, Pointer<Uint32> ptkIface) =>
    (ptr.ref.vtable + 13)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Uint32 iiImpl,
                        Pointer<Uint32> pClass, Pointer<Uint32> ptkIface)>>>()
        .value
        .asFunction<
            int Function(
                Pointer,
                int iiImpl,
                Pointer<Uint32> pClass,
                Pointer<Uint32>
                    ptkIface)>()(ptr.ref.lpVtbl, iiImpl, pClass, ptkIface);