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

This commit is contained in:
Vincent Povirk 2009-10-02 15:27:24 -05:00 committed by Alexandre Julliard
parent 7e37df04ec
commit 40433554d5
1 changed files with 2 additions and 4 deletions

View File

@ -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;
}