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
1e9dbcc5
Commit
1e9dbcc5
authored
Apr 19, 2008
by
Maarten Lankhorst
Committed by
Alexandre Julliard
Apr 23, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Fix error message names in tests.
parent
a0224676
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
filtergraph.c
dlls/quartz/tests/filtergraph.c
+5
-5
No files found.
dlls/quartz/tests/filtergraph.c
View file @
1e9dbcc5
...
...
@@ -79,22 +79,22 @@ static void rungraph(void)
Sleep
(
10
);
trace
(
"stop -> pause
\n
"
);
hr
=
IMediaControl_Pause
(
pmc
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
start
the graph returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
pause
the graph returned: %x
\n
"
,
hr
);
Sleep
(
10
);
trace
(
"pause -> run
\n
"
);
hr
=
IMediaControl_Run
(
pmc
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
pause
the graph returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
start
the graph returned: %x
\n
"
,
hr
);
Sleep
(
10
);
trace
(
"run -> pause
\n
"
);
hr
=
IMediaControl_Pause
(
pmc
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
start
the graph returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot
pause
the graph returned: %x
\n
"
,
hr
);
Sleep
(
10
);
trace
(
"pause -> stop
\n
"
);
hr
=
IMediaControl_Stop
(
pmc
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot st
art
the graph returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot st
op
the graph returned: %x
\n
"
,
hr
);
Sleep
(
10
);
trace
(
"pause -> run
\n
"
);
...
...
@@ -103,7 +103,7 @@ static void rungraph(void)
trace
(
"run -> stop
\n
"
);
hr
=
IMediaControl_Stop
(
pmc
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot st
art
the graph returned: %x
\n
"
,
hr
);
ok
(
hr
==
S_OK
||
hr
==
S_FALSE
,
"Cannot st
op
the graph returned: %x
\n
"
,
hr
);
trace
(
"stop -> run
\n
"
);
hr
=
IMediaControl_Run
(
pmc
);
...
...
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