getMethodQualifierSet method

int getMethodQualifierSet(
  1. Pointer<Utf16> wszMethod,
  2. Pointer<Pointer<COMObject>> ppQualSet
)

Implementation

int getMethodQualifierSet(
        Pointer<Utf16> wszMethod, Pointer<Pointer<COMObject>> ppQualSet) =>
    ptr.ref.vtable
            .elementAt(25)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<Utf16> wszMethod,
                            Pointer<Pointer<COMObject>> ppQualSet)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<Utf16> wszMethod,
                    Pointer<Pointer<COMObject>> ppQualSet)>()(
        ptr.ref.lpVtbl, wszMethod, ppQualSet);