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
dd8d5f38
Commit
dd8d5f38
authored
Aug 31, 2016
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Sep 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dmusic: Avoid using the COM method implementations directly.
Signed-off-by:
Michael Stefaniuc
<
mstefani@redhat.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
44cd385a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
clock.c
dlls/dmusic/clock.c
+1
-1
dmusic.c
dlls/dmusic/dmusic.c
+1
-1
No files found.
dlls/dmusic/clock.c
View file @
dd8d5f38
...
@@ -138,7 +138,7 @@ HRESULT DMUSIC_CreateReferenceClockImpl(LPCGUID riid, LPVOID* ret_iface, LPUNKNO
...
@@ -138,7 +138,7 @@ HRESULT DMUSIC_CreateReferenceClockImpl(LPCGUID riid, LPVOID* ret_iface, LPUNKNO
DMUSIC_LockModule
();
DMUSIC_LockModule
();
hr
=
IReferenceClockImpl_QueryInterface
(
&
clock
->
IReferenceClock_iface
,
riid
,
ret_iface
);
hr
=
IReferenceClockImpl_QueryInterface
(
&
clock
->
IReferenceClock_iface
,
riid
,
ret_iface
);
IReferenceClock
Impl
_Release
(
&
clock
->
IReferenceClock_iface
);
IReferenceClock_Release
(
&
clock
->
IReferenceClock_iface
);
return
hr
;
return
hr
;
}
}
dlls/dmusic/dmusic.c
View file @
dd8d5f38
...
@@ -430,7 +430,7 @@ HRESULT WINAPI DMUSIC_CreateDirectMusicImpl(LPCGUID riid, LPVOID* ret_iface, LPU
...
@@ -430,7 +430,7 @@ HRESULT WINAPI DMUSIC_CreateDirectMusicImpl(LPCGUID riid, LPVOID* ret_iface, LPU
DMUSIC_LockModule
();
DMUSIC_LockModule
();
ret
=
IDirectMusic8Impl_QueryInterface
(
&
dmusic
->
IDirectMusic8_iface
,
riid
,
ret_iface
);
ret
=
IDirectMusic8Impl_QueryInterface
(
&
dmusic
->
IDirectMusic8_iface
,
riid
,
ret_iface
);
IDirectMusic8
Impl
_Release
(
&
dmusic
->
IDirectMusic8_iface
);
IDirectMusic8_Release
(
&
dmusic
->
IDirectMusic8_iface
);
return
ret
;
return
ret
;
}
}
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