Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
9c9f8c0b
Commit
9c9f8c0b
authored
Jun 21, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 23, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz/tests: Get rid of some casts.
parent
645a3147
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
referenceclock.c
dlls/quartz/tests/referenceclock.c
+6
-6
No files found.
dlls/quartz/tests/referenceclock.c
View file @
9c9f8c0b
...
...
@@ -28,21 +28,21 @@
static
void
test_IReferenceClock_query_interface
(
const
char
*
clockdesc
,
IReferenceClock
*
pClock
)
{
HRESULT
hr
;
void
*
pF
;
IUnknown
*
pF
;
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IUnknown
,
&
pF
);
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IUnknown
,
(
void
**
)
&
pF
);
ok
(
hr
==
S_OK
,
"IReferenceClock_QueryInterface returned %x
\n
"
,
hr
);
ok
(
pF
!=
NULL
,
"pF is NULL
\n
"
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
(
IUnknown
*
)
pF
);
if
(
SUCCEEDED
(
hr
))
IUnknown_Release
(
pF
);
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IDirectDraw
,
&
pF
);
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IDirectDraw
,
(
void
**
)
&
pF
);
ok
(
hr
==
E_NOINTERFACE
,
"IReferenceClock_QueryInterface returned %x
\n
"
,
hr
);
ok
(
pF
==
NULL
,
"pF is not NULL
\n
"
);
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IReferenceClock
,
&
pF
);
hr
=
IReferenceClock_QueryInterface
(
pClock
,
&
IID_IReferenceClock
,
(
void
**
)
&
pF
);
ok
(
hr
==
S_OK
,
"IReferenceClock_QueryInterface returned %x
\n
"
,
hr
);
ok
(
pF
!=
NULL
,
"pF is NULL
\n
"
);
if
(
SUCCEEDED
(
hr
))
I
ReferenceClock_Release
((
IReferenceClock
*
)
pF
);
if
(
SUCCEEDED
(
hr
))
I
Unknown_Release
(
pF
);
}
/* The following method expects a reference clock that will keep ticking for
...
...
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