getIids method

int getIids(
  1. Pointer<Uint32> iidCount,
  2. Pointer<Pointer<GUID>> iids
)
inherited

Implementation

int getIids(Pointer<Uint32> iidCount, Pointer<Pointer<GUID>> iids) =>
    (ptr.ref.vtable + 3)
        .cast<
          Pointer<
            NativeFunction<
              Int32 Function(
                Pointer,
                Pointer<Uint32> iidCount,
                Pointer<Pointer<GUID>> iids,
              )
            >
          >
        >()
        .value
        .asFunction<
          int Function(
            Pointer,
            Pointer<Uint32> iidCount,
            Pointer<Pointer<GUID>> iids,
          )
        >()(ptr.ref.lpVtbl, iidCount, iids);