applyProperties method

int applyProperties(
  1. Pointer<COMObject> psi,
  2. Pointer<COMObject> pStore,
  3. int hwnd,
  4. Pointer<COMObject> pSink,
)

Implementation

int applyProperties(Pointer<COMObject> psi, Pointer<COMObject> pStore,
        int hwnd, Pointer<COMObject> pSink) =>
    (ptr.ref.vtable + 31)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(
                            Pointer,
                            Pointer<COMObject> psi,
                            Pointer<COMObject> pStore,
                            IntPtr hwnd,
                            Pointer<COMObject> pSink)>>>()
            .value
            .asFunction<
                int Function(
                    Pointer,
                    Pointer<COMObject> psi,
                    Pointer<COMObject> pStore,
                    int hwnd,
                    Pointer<COMObject> pSink)>()(
        ptr.ref.lpVtbl, psi, pStore, hwnd, pSink);