Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
da250c9a
Commit
da250c9a
authored
Jan 24, 2010
by
Vincent Povirk
Committed by
Alexandre Julliard
Jan 25, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: IStorage_Revert has no effect for non-transacted storages.
parent
ec8f0029
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
storage32.c
dlls/ole32/storage32.c
+2
-2
storage32.c
dlls/ole32/tests/storage32.c
+1
-1
No files found.
dlls/ole32/storage32.c
View file @
da250c9a
...
...
@@ -1796,8 +1796,8 @@ static HRESULT WINAPI StorageImpl_Commit(
static
HRESULT
WINAPI
StorageImpl_Revert
(
IStorage
*
iface
)
{
FIXME
(
"(%p): stub
\n
"
,
iface
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
iface
);
return
S_OK
;
}
/*************************************************************************
...
...
dlls/ole32/tests/storage32.c
View file @
da250c9a
...
...
@@ -1384,7 +1384,7 @@ static void test_revert(void)
ok
(
r
==
S_OK
,
"IStorage->CreateStream failed
\n
"
);
r
=
IStorage_Revert
(
stg
);
todo_wine
ok
(
r
==
S_OK
,
"IStorage->Revert failed %08x
\n
"
,
r
);
ok
(
r
==
S_OK
,
"IStorage->Revert failed %08x
\n
"
,
r
);
r
=
IStream_Write
(
stm
,
"this works
\n
"
,
11
,
NULL
);
ok
(
r
==
S_OK
,
"IStream_Write should succeed %08x
\n
"
,
r
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment