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
026b786e
Commit
026b786e
authored
Jan 31, 2005
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Jan 31, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace a DPRINTF with TRACE.
parent
653c0597
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
8 deletions
+5
-8
dce.c
windows/dce.c
+5
-8
No files found.
windows/dce.c
View file @
026b786e
...
...
@@ -57,16 +57,13 @@ static void DCE_DumpCache(void)
DCE
*
dce
;
USER_Lock
();
dce
=
firstDCE
;
DPRINTF
(
"DCE:
\n
"
);
while
(
dce
)
for
(
dce
=
firstDCE
;
dce
;
dce
=
dce
->
next
)
{
DPRINTF
(
"
\t
[0x%08x] hWnd %p, dcx %08x, %s %s
\n
"
,
(
unsigned
)
dce
,
dce
->
hwndCurrent
,
(
unsigned
)
dce
->
DCXflags
,
(
dce
->
DCXflags
&
DCX_CACHE
)
?
"Cache"
:
"Owned"
,
(
dce
->
DCXflags
&
DCX_DCEBUSY
)
?
"InUse"
:
""
);
dce
=
dce
->
next
;
TRACE
(
"
\t
[0x%08x] hWnd %p, dcx %08x, %s %s
\n
"
,
(
unsigned
)
dce
,
dce
->
hwndCurrent
,
(
unsigned
)
dce
->
DCXflags
,
(
dce
->
DCXflags
&
DCX_CACHE
)
?
"Cache"
:
"Owned"
,
(
dce
->
DCXflags
&
DCX_DCEBUSY
)
?
"InUse"
:
""
);
}
USER_Unlock
();
...
...
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