enumTypeSpecs method

int enumTypeSpecs(
  1. Pointer<Pointer<NativeType>> phEnum,
  2. Pointer<Uint32> rTypeSpecs,
  3. int cmax,
  4. Pointer<Uint32> pcTypeSpecs,
)

Implementation

int enumTypeSpecs(
  Pointer<Pointer> phEnum,
  Pointer<Uint32> rTypeSpecs,
  int cmax,
  Pointer<Uint32> pcTypeSpecs,
) => (ptr.ref.vtable + 50)
    .cast<
      Pointer<
        NativeFunction<
          Int32 Function(
            Pointer,
            Pointer<Pointer> phEnum,
            Pointer<Uint32> rTypeSpecs,
            Uint32 cmax,
            Pointer<Uint32> pcTypeSpecs,
          )
        >
      >
    >()
    .value
    .asFunction<
      int Function(
        Pointer,
        Pointer<Pointer> phEnum,
        Pointer<Uint32> rTypeSpecs,
        int cmax,
        Pointer<Uint32> pcTypeSpecs,
      )
    >()(ptr.ref.lpVtbl, phEnum, rTypeSpecs, cmax, pcTypeSpecs);