getEventInterest method

int getEventInterest(
  1. Pointer<Pointer<GUID>> ppValues,
  2. Pointer<Uint32> pCount
)

Implementation

int getEventInterest(
        Pointer<Pointer<GUID>> ppValues, Pointer<Uint32> pCount) =>
    (ptr.ref.vtable + 15)
        .cast<
            Pointer<
                NativeFunction<
                    Int32 Function(Pointer, Pointer<Pointer<GUID>> ppValues,
                        Pointer<Uint32> pCount)>>>()
        .value
        .asFunction<
            int Function(Pointer, Pointer<Pointer<GUID>> ppValues,
                Pointer<Uint32> pCount)>()(ptr.ref.lpVtbl, ppValues, pCount);