normalizeElementBuildCache method

int normalizeElementBuildCache(
  1. Pointer<COMObject> element,
  2. Pointer<COMObject> cacheRequest,
  3. Pointer<Pointer<COMObject>> normalized
)

Implementation

int normalizeElementBuildCache(
        Pointer<COMObject> element,
        Pointer<COMObject> cacheRequest,
        Pointer<Pointer<COMObject>> normalized) =>
    (ptr.ref.vtable + 14)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> element,
                            Pointer<COMObject> cacheRequest,
                            Pointer<Pointer<COMObject>> normalized)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> element,
                    Pointer<COMObject> cacheRequest,
                    Pointer<Pointer<COMObject>> normalized)>()(
        ptr.ref.lpVtbl, element, cacheRequest, normalized);