getProperties method

int getProperties(
  1. Pointer<COMObject> pKeys,
  2. Pointer<Pointer<COMObject>> ppProperties
)

Implementation

int getProperties(
        Pointer<COMObject> pKeys, Pointer<Pointer<COMObject>> ppProperties) =>
    (ptr.ref.vtable + 8)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<COMObject> pKeys,
                            Pointer<Pointer<COMObject>> ppProperties)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<COMObject> pKeys,
                    Pointer<Pointer<COMObject>> ppProperties)>()(
        ptr.ref.lpVtbl, pKeys, ppProperties);