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
9c5336ee
Commit
9c5336ee
authored
Jun 28, 2015
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Jun 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmcompos: Mark IPersistStream_Save of DMSignPostTrack as a stub.
parent
3e624359
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
signposttrack.c
dlls/dmcompos/signposttrack.c
+8
-1
dmcompos.c
dlls/dmcompos/tests/dmcompos.c
+1
-1
No files found.
dlls/dmcompos/signposttrack.c
View file @
9c5336ee
...
...
@@ -253,7 +253,14 @@ static HRESULT WINAPI IPersistStreamImpl_Load(IPersistStream *iface, IStream *pS
static
HRESULT
WINAPI
IPersistStreamImpl_Save
(
IPersistStream
*
iface
,
IStream
*
stream
,
BOOL
cleardirty
)
{
return
E_NOTIMPL
;
IDirectMusicSignPostTrack
*
This
=
impl_from_IPersistStream
(
iface
);
FIXME
(
"(%p, %p, %d): stub
\n
"
,
This
,
stream
,
cleardirty
);
if
(
!
stream
)
return
E_POINTER
;
return
E_NOTIMPL
;
}
static
const
IPersistStreamVtbl
persiststream_vtbl
=
{
...
...
dlls/dmcompos/tests/dmcompos.c
View file @
9c5336ee
...
...
@@ -387,7 +387,7 @@ static void test_signposttrack(void)
ok
(
IsEqualGUID
(
&
class
,
&
CLSID_DirectMusicSignPostTrack
),
"Expected class CLSID_DirectMusicSignPostTrack got %s
\n
"
,
wine_dbgstr_guid
(
&
class
));
hr
=
IPersistStream_Save
(
ps
,
NULL
,
TRUE
);
todo_wine
ok
(
hr
==
E_POINTER
,
"IPersistStream_Save failed: %08x
\n
"
,
hr
);
ok
(
hr
==
E_POINTER
,
"IPersistStream_Save failed: %08x
\n
"
,
hr
);
/* Unimplemented IPersistStream methods */
hr
=
IPersistStream_IsDirty
(
ps
);
...
...
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