Vincent Povirk : ole32: We do need to implement Commit/ Revert for non-root storage.

Alexandre Julliard julliard at winehq.org
Mon Oct 5 09:54:25 CDT 2009


Module: wine
Branch: master
Commit: 40433554d508b9c2c1231e4dc486516e077879e8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=40433554d508b9c2c1231e4dc486516e077879e8

Author: Vincent Povirk <vincent at codeweavers.com>
Date:   Fri Oct  2 15:27:24 2009 -0500

ole32: We do need to implement Commit/Revert for non-root storage.

---

 dlls/ole32/storage32.c |    6 ++----
 1 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c
index 9082334..61752e4 100644
--- a/dlls/ole32/storage32.c
+++ b/dlls/ole32/storage32.c
@@ -3720,13 +3720,12 @@ static void StorageInternalImpl_Destroy( StorageBaseImpl *iface)
 **
 ** Storage32InternalImpl_Commit
 **
-** The non-root storages cannot be opened in transacted mode thus this function
-** does nothing.
 */
 static HRESULT WINAPI StorageInternalImpl_Commit(
   IStorage*            iface,
   DWORD                  grfCommitFlags)  /* [in] */
 {
+  FIXME("(%p,%x): stub\n", iface, grfCommitFlags);
   return S_OK;
 }
 
@@ -3734,12 +3733,11 @@ static HRESULT WINAPI StorageInternalImpl_Commit(
 **
 ** Storage32InternalImpl_Revert
 **
-** The non-root storages cannot be opened in transacted mode thus this function
-** does nothing.
 */
 static HRESULT WINAPI StorageInternalImpl_Revert(
   IStorage*            iface)
 {
+  FIXME("(%p): stub\n", iface);
   return S_OK;
 }
 




More information about the wine-cvs mailing list