getCustomAttributeProps method

int getCustomAttributeProps(
  1. int cv,
  2. Pointer<Uint32> ptkObj,
  3. Pointer<Uint32> ptkType,
  4. Pointer<Pointer<NativeType>> ppBlob,
  5. Pointer<Uint32> pcbSize,
)

Implementation

int getCustomAttributeProps(
        int cv,
        Pointer<Uint32> ptkObj,
        Pointer<Uint32> ptkType,
        Pointer<Pointer> ppBlob,
        Pointer<Uint32> pcbSize) =>
    (ptr.ref.vtable + 54)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Uint32 cv,
                            Pointer<Uint32> ptkObj,
                            Pointer<Uint32> ptkType,
                            Pointer<Pointer> ppBlob,
                            Pointer<Uint32> pcbSize)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    int cv,
                    Pointer<Uint32> ptkObj,
                    Pointer<Uint32> ptkType,
                    Pointer<Pointer> ppBlob,
                    Pointer<Uint32> pcbSize)>()(
        ptr.ref.lpVtbl, cv, ptkObj, ptkType, ppBlob, pcbSize);