getUInt64 method

int getUInt64(
  1. Pointer<PROPERTYKEY> key,
  2. Pointer<Uint64> pull
)

Implementation

int getUInt64(Pointer<PROPERTYKEY> key, Pointer<Uint64> pull) =>
    ptr.ref.vtable
        .elementAt(19)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Pointer<PROPERTYKEY> key,
                        Pointer<Uint64> pull)>>>()
        .value
        .asFunction<
            int Function(Pointer, Pointer<PROPERTYKEY> key,
                Pointer<Uint64> pull)>()(ptr.ref.lpVtbl, key, pull);