setProperties method

int setProperties(
  1. Pointer<COMObject> pProperties,
  2. Pointer<Pointer<COMObject>> ppResults
)

Implementation

int setProperties(Pointer<COMObject> pProperties,
        Pointer<Pointer<COMObject>> ppResults) =>
    (ptr.ref.vtable + 10)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Pointer<COMObject> pProperties,
                        Pointer<Pointer<COMObject>> ppResults)>>>()
        .value
        .asFunction<
            int Function(
                Pointer,
                Pointer<COMObject> pProperties,
                Pointer<Pointer<COMObject>>
                    ppResults)>()(ptr.ref.lpVtbl, pProperties, ppResults);