getAttributeValues method

int getAttributeValues(
  1. Pointer<Uint32> attributeIds,
  2. int attributeIdCount,
  3. Pointer<Pointer<SAFEARRAY>> attributeValues
)

Implementation

int getAttributeValues(Pointer<Uint32> attributeIds, int attributeIdCount,
        Pointer<Pointer<SAFEARRAY>> attributeValues) =>
    (ptr.ref.vtable + 24)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<Uint32> attributeIds,
                            Int32 attributeIdCount,
                            Pointer<Pointer<SAFEARRAY>> attributeValues)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<Uint32> attributeIds,
                    int attributeIdCount,
                    Pointer<Pointer<SAFEARRAY>> attributeValues)>()(
        ptr.ref.lpVtbl, attributeIds, attributeIdCount, attributeValues);