readDWORD method

int readDWORD(
  1. int lHandle,
  2. Pointer<Uint32> pdw
)

Implementation

int readDWORD(int lHandle, Pointer<Uint32> pdw) => (ptr.ref.vtable + 30)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(
                        Pointer, Int32 lHandle, Pointer<Uint32> pdw)>>>()
        .value
        .asFunction<
            int Function(Pointer, int lHandle, Pointer<Uint32> pdw)>()(
    ptr.ref.lpVtbl, lHandle, pdw);