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
aef01a24
Commit
aef01a24
authored
Jun 18, 2010
by
Paul Vriens
Committed by
Alexandre Julliard
Jun 18, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add another flag to the TRACE().
parent
97a6523b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
win.c
dlls/user32/win.c
+3
-1
No files found.
dlls/user32/win.c
View file @
aef01a24
...
...
@@ -1038,6 +1038,7 @@ static void dump_window_styles( DWORD style, DWORD exstyle )
if
(
exstyle
&
WS_EX_STATICEDGE
)
TRACE
(
" WS_EX_STATICEDGE"
);
if
(
exstyle
&
WS_EX_APPWINDOW
)
TRACE
(
" WS_EX_APPWINDOW"
);
if
(
exstyle
&
WS_EX_LAYERED
)
TRACE
(
" WS_EX_LAYERED"
);
if
(
exstyle
&
WS_EX_LAYOUTRTL
)
TRACE
(
" WS_EX_LAYOUTRTL"
);
#define DUMPED_EX_STYLES \
(WS_EX_DLGMODALFRAME | \
...
...
@@ -1057,7 +1058,8 @@ static void dump_window_styles( DWORD style, DWORD exstyle )
WS_EX_CONTROLPARENT | \
WS_EX_STATICEDGE | \
WS_EX_APPWINDOW | \
WS_EX_LAYERED)
WS_EX_LAYERED | \
WS_EX_LAYOUTRTL)
if
(
exstyle
&
~
DUMPED_EX_STYLES
)
TRACE
(
" %08lx"
,
exstyle
&
~
DUMPED_EX_STYLES
);
TRACE
(
"
\n
"
);
...
...
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