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
bacd9abb
Commit
bacd9abb
authored
Dec 01, 2013
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Dec 02, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Cast to the correct type instead to void pointer.
parent
4b59a426
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
filtergraph.c
dlls/quartz/filtergraph.c
+1
-1
avisplitter.c
dlls/quartz/tests/avisplitter.c
+1
-1
dsoundrender.c
dlls/quartz/tests/dsoundrender.c
+1
-1
filtermapper.c
dlls/quartz/tests/filtermapper.c
+1
-1
videorenderer.c
dlls/quartz/tests/videorenderer.c
+1
-1
No files found.
dlls/quartz/filtergraph.c
View file @
bacd9abb
...
...
@@ -5278,7 +5278,7 @@ static HRESULT WINAPI MediaFilter_SetSyncSource(IMediaFilter *iface, IReferenceC
IMediaEventSink
*
pEventSink
;
HRESULT
eshr
;
eshr
=
IMediaFilter_QueryInterface
(
iface
,
&
IID_IMediaEventSink
,
(
LPVOID
)
&
pEventSink
);
eshr
=
IMediaFilter_QueryInterface
(
iface
,
&
IID_IMediaEventSink
,
(
void
**
)
&
pEventSink
);
if
(
SUCCEEDED
(
eshr
))
{
IMediaEventSink_Notify
(
pEventSink
,
EC_CLOCK_CHANGED
,
0
,
0
);
...
...
dlls/quartz/tests/avisplitter.c
View file @
bacd9abb
...
...
@@ -128,7 +128,7 @@ static void test_basefilter(void)
ULONG
ref
;
HRESULT
hr
;
IUnknown_QueryInterface
(
pAviSplitter
,
&
IID_IBaseFilter
,
(
void
*
)
&
base
);
IUnknown_QueryInterface
(
pAviSplitter
,
&
IID_IBaseFilter
,
(
void
*
*
)
&
base
);
if
(
base
==
NULL
)
{
/* test_query_interface handles this case */
...
...
dlls/quartz/tests/dsoundrender.c
View file @
bacd9abb
...
...
@@ -179,7 +179,7 @@ static void test_basefilter(void)
ULONG
ref
;
HRESULT
hr
;
IUnknown_QueryInterface
(
pDSRender
,
&
IID_IBaseFilter
,
(
void
*
)
&
base
);
IUnknown_QueryInterface
(
pDSRender
,
&
IID_IBaseFilter
,
(
void
*
*
)
&
base
);
if
(
base
==
NULL
)
{
/* test_query_interface handles this case */
...
...
dlls/quartz/tests/filtermapper.c
View file @
bacd9abb
...
...
@@ -233,7 +233,7 @@ static void test_legacy_filter_registration(void)
ok
(
hr
==
S_OK
,
"CoCreateInstance failed with %x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
goto
out
;
hr
=
IFilterMapper2_QueryInterface
(
pMapper2
,
&
IID_IFilterMapper
,
(
LPVOID
)
&
pMapper
);
hr
=
IFilterMapper2_QueryInterface
(
pMapper2
,
&
IID_IFilterMapper
,
(
void
**
)
&
pMapper
);
ok
(
hr
==
S_OK
,
"IFilterMapper2_QueryInterface failed with %x
\n
"
,
hr
);
if
(
FAILED
(
hr
))
goto
out
;
...
...
dlls/quartz/tests/videorenderer.c
View file @
bacd9abb
...
...
@@ -110,7 +110,7 @@ static void test_basefilter(void)
ULONG
ref
;
HRESULT
hr
;
IUnknown_QueryInterface
(
pVideoRenderer
,
&
IID_IBaseFilter
,
(
void
*
)
&
base
);
IUnknown_QueryInterface
(
pVideoRenderer
,
&
IID_IBaseFilter
,
(
void
*
*
)
&
base
);
if
(
base
==
NULL
)
{
/* test_query_interface handles this case */
...
...
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