getObjectParam method

int getObjectParam(
  1. Pointer<Utf16> pszKey,
  2. Pointer<Pointer<COMObject>> ppunk
)

Implementation

int getObjectParam(
        Pointer<Utf16> pszKey, Pointer<Pointer<COMObject>> ppunk) =>
    ptr.ref.vtable
            .elementAt(10)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Pointer<Utf16> pszKey,
                            Pointer<Pointer<COMObject>> ppunk)>>>()
            .value
            .asFunction<
                int Function(Pointer, Pointer<Utf16> pszKey,
                    Pointer<Pointer<COMObject>> ppunk)>()(
        ptr.ref.lpVtbl, pszKey, ppunk);