enumAssemblyRefs method

int enumAssemblyRefs(
  1. Pointer<Pointer<NativeType>> phEnum,
  2. Pointer<Uint32> rAssemblyRefs,
  3. int cMax,
  4. Pointer<Uint32> pcTokens,
)

Implementation

int enumAssemblyRefs(Pointer<Pointer> phEnum, Pointer<Uint32> rAssemblyRefs,
        int cMax, Pointer<Uint32> pcTokens) =>
    (ptr.ref.vtable + 8)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<Pointer> phEnum,
                            Pointer<Uint32> rAssemblyRefs,
                            Uint32 cMax,
                            Pointer<Uint32> pcTokens)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<Pointer> phEnum,
                    Pointer<Uint32> rAssemblyRefs,
                    int cMax,
                    Pointer<Uint32> pcTokens)>()(
        ptr.ref.lpVtbl, phEnum, rAssemblyRefs, cMax, pcTokens);