findFirstBuildCache method

int findFirstBuildCache(
  1. int scope,
  2. Pointer<COMObject> condition,
  3. Pointer<COMObject> cacheRequest,
  4. Pointer<Pointer<COMObject>> found,
)

Implementation

int findFirstBuildCache(int scope, Pointer<COMObject> condition,
        Pointer<COMObject> cacheRequest, Pointer<Pointer<COMObject>> found) =>
    (ptr.ref.vtable + 7)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Int32 scope,
                            Pointer<COMObject> condition,
                            Pointer<COMObject> cacheRequest,
                            Pointer<Pointer<COMObject>> found)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    int scope,
                    Pointer<COMObject> condition,
                    Pointer<COMObject> cacheRequest,
                    Pointer<Pointer<COMObject>> found)>()(
        ptr.ref.lpVtbl, scope, condition, cacheRequest, found);