readQWORD method

int readQWORD(
  1. int lHandle,
  2. Pointer<Uint64> pqw
)

Implementation

int readQWORD(int lHandle, Pointer<Uint64> pqw) => (ptr.ref.vtable + 32)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(
                        Pointer, Int32 lHandle, Pointer<Uint64> pqw)>>>()
        .value
        .asFunction<
            int Function(Pointer, int lHandle, Pointer<Uint64> pqw)>()(
    ptr.ref.lpVtbl, lHandle, pqw);