enumCustomAttributes method

int enumCustomAttributes(
  1. Pointer<Pointer<NativeType>> phEnum,
  2. int tk,
  3. int tkType,
  4. Pointer<Uint32> rCustomAttributes,
  5. int cMax,
  6. Pointer<Uint32> pcCustomAttributes,
)

Implementation

int enumCustomAttributes(
  Pointer<Pointer> phEnum,
  int tk,
  int tkType,
  Pointer<Uint32> rCustomAttributes,
  int cMax,
  Pointer<Uint32> pcCustomAttributes,
) => (ptr.ref.vtable + 53)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Pointer<Pointer> phEnum,
            Uint32 tk,
            Uint32 tkType,
            Pointer<Uint32> rCustomAttributes,
            Uint32 cMax,
            Pointer<Uint32> pcCustomAttributes,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        Pointer<Pointer> phEnum,
        int tk,
        int tkType,
        Pointer<Uint32> rCustomAttributes,
        int cMax,
        Pointer<Uint32> pcCustomAttributes,
      )
    >()(
  ptr.ref.lpVtbl,
  phEnum,
  tk,
  tkType,
  rCustomAttributes,
  cMax,
  pcCustomAttributes,
);