setEventInterest method

int setEventInterest(
  1. Pointer<GUID> pValues,
  2. int count
)

Implementation

int setEventInterest(Pointer<GUID> pValues, int count) =>
    (ptr.ref.vtable + 16)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer, Pointer<GUID> pValues, Uint32 count)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<GUID> pValues, int count)>()(
        ptr.ref.lpVtbl, pValues, count);