Commit d799f7e1 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

ole32: Add a stub transacted storage type.

TransactedSnapshotImpl acts as a proxy between the user and the storage interfaces that modify the file directly (or another transacted storage). Currently, it does not change the operations.
parent 42142200
...@@ -243,6 +243,11 @@ struct StorageBaseImpl ...@@ -243,6 +243,11 @@ struct StorageBaseImpl
BOOL create; /* Was the storage created or opened. BOOL create; /* Was the storage created or opened.
The behaviour of STGM_SIMPLE depends on this */ The behaviour of STGM_SIMPLE depends on this */
/*
* If this storage was opened in transacted mode, the object that implements
* the transacted snapshot or cache.
*/
StorageBaseImpl *transactedChild;
}; };
/* virtual methods for StorageBaseImpl objects */ /* virtual methods for StorageBaseImpl objects */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment