OpenPropertyStore method

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

Implementation

int OpenPropertyStore(
        int stgmAccess, Pointer<Pointer<COMObject>> ppProperties) =>
    ptr
            .ref.vtable
            .elementAt(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);