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
bd961941
Commit
bd961941
authored
Oct 10, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Oct 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
quartz: Use BOOL type where appropriate.
parent
d12c0d67
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
filtergraph.c
dlls/quartz/filtergraph.c
+4
-4
No files found.
dlls/quartz/filtergraph.c
View file @
bd961941
...
...
@@ -117,7 +117,7 @@ static int EventsQueue_PutEvent(EventsQueue* omr, const Event* evt)
return
TRUE
;
}
static
int
EventsQueue_GetEvent
(
EventsQueue
*
omr
,
Event
*
evt
,
LONG
msTimeOut
)
static
BOOL
EventsQueue_GetEvent
(
EventsQueue
*
omr
,
Event
*
evt
,
LONG
msTimeOut
)
{
if
(
WaitForSingleObject
(
omr
->
msg_event
,
msTimeOut
)
!=
WAIT_OBJECT_0
)
return
FALSE
;
...
...
@@ -377,7 +377,7 @@ static HRESULT WINAPI FilterGraph2_AddFilter(IFilterGraph2 *iface, IBaseFilter *
HRESULT
hr
;
int
i
,
j
;
WCHAR
*
wszFilterName
=
NULL
;
int
duplicate_name
=
FALSE
;
BOOL
duplicate_name
=
FALSE
;
TRACE
(
"(%p/%p)->(%p, %s (%p))
\n
"
,
This
,
iface
,
pFilter
,
debugstr_w
(
pName
),
pName
);
...
...
@@ -490,7 +490,7 @@ static HRESULT WINAPI FilterGraph2_RemoveFilter(IFilterGraph2 *iface, IBaseFilte
if
(
This
->
defaultclock
&&
This
->
refClockProvider
==
pFilter
)
{
IMediaFilter_SetSyncSource
(
&
This
->
IMediaFilter_iface
,
NULL
);
This
->
defaultclock
=
1
;
This
->
defaultclock
=
TRUE
;
}
TRACE
(
"Removing filter %s
\n
"
,
debugstr_w
(
This
->
pFilterNames
[
i
]));
...
...
@@ -1502,7 +1502,7 @@ static HRESULT WINAPI FilterGraph2_RenderFile(IFilterGraph2 *iface, LPCWSTR lpcw
IEnumPins
*
penumpins
=
NULL
;
HRESULT
hr
;
BOOL
partial
=
FALSE
;
HRESULT
any
=
FALSE
;
BOOL
any
=
FALSE
;
TRACE
(
"(%p/%p)->(%s, %s)
\n
"
,
This
,
iface
,
debugstr_w
(
lpcwstrFile
),
debugstr_w
(
lpcwstrPlayList
));
...
...
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