enumProperties method

int enumProperties(
  1. Pointer<Pointer<NativeType>> phEnum,
  2. int td,
  3. Pointer<Uint32> rProperties,
  4. int cMax,
  5. Pointer<Uint32> pcProperties,
)

Implementation

int enumProperties(
        Pointer<Pointer> phEnum,
        int td,
        Pointer<Uint32> rProperties,
        int cMax,
        Pointer<Uint32> pcProperties) =>
    (ptr.ref.vtable + 32)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<Pointer> phEnum,
                            Uint32 td,
                            Pointer<Uint32> rProperties,
                            Uint32 cMax,
                            Pointer<Uint32> pcProperties)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<Pointer> phEnum,
                    int td,
                    Pointer<Uint32> rProperties,
                    int cMax,
                    Pointer<Uint32> pcProperties)>()(
        ptr.ref.lpVtbl, phEnum, td, rProperties, cMax, pcProperties);