getSensorValues method

int getSensorValues(
  1. Pointer<COMObject> pKeys,
  2. Pointer<Pointer<COMObject>> ppValues
)

Implementation

int getSensorValues(
        Pointer<COMObject> pKeys, Pointer<Pointer<COMObject>> ppValues) =>
    (ptr.ref.vtable + 5)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<COMObject> pKeys,
                            Pointer<Pointer<COMObject>> ppValues)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<COMObject> pKeys,
                    Pointer<Pointer<COMObject>> ppValues)>()(
        ptr.ref.lpVtbl, pKeys, ppValues);