openPropertyStore method

int openPropertyStore(
  1. int stgmAccess,
  2. Pointer<Pointer<COMObject>> ppProperties
)

Implementation

int openPropertyStore(
        int stgmAccess, Pointer<Pointer<COMObject>> ppProperties) =>
    (ptr.ref.vtable + 4)
            .cast<
                Pointer<
                    NativeFunction<
                        Int32 Function(Pointer, Uint32 stgmAccess,
                            Pointer<Pointer<COMObject>> ppProperties)>>>()
            .value
            .asFunction<
                int Function(Pointer, int stgmAccess,
                    Pointer<Pointer<COMObject>> ppProperties)>()(
        ptr.ref.lpVtbl, stgmAccess, ppProperties);