Module: wine Branch: master Commit: 40433554d508b9c2c1231e4dc486516e077879e8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=40433554d508b9c2c1231e4dc4...
Author: Vincent Povirk vincent@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; }