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
05e40aa6
Commit
05e40aa6
authored
Oct 30, 2017
by
Huw Davies
Committed by
Alexandre Julliard
Oct 30, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Trace the full NCCALCSIZE_PARAMS info if present.
Signed-off-by:
Huw Davies
<
huw@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9c9c0304
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
spy.c
dlls/user32/spy.c
+12
-1
No files found.
dlls/user32/spy.c
View file @
05e40aa6
...
...
@@ -2479,9 +2479,20 @@ static void SPY_DumpStructure(const SPY_INSTANCE *sp_e, BOOL enter)
}
break
;
case
WM_NCCALCSIZE
:
if
(
!
sp_e
->
wParam
)
{
RECT
*
rc
=
(
RECT
*
)
sp_e
->
lParam
;
TRACE
(
"Rect (%s)
\n
"
,
wine_dbgstr_rect
(
rc
));
TRACE
(
"Rect %s
\n
"
,
wine_dbgstr_rect
(
rc
));
}
else
{
NCCALCSIZE_PARAMS
*
nc
=
(
NCCALCSIZE_PARAMS
*
)
sp_e
->
lParam
;
TRACE
(
"Rects %s %s %s
\n
"
,
wine_dbgstr_rect
(
nc
->
rgrc
),
wine_dbgstr_rect
(
nc
->
rgrc
+
1
),
wine_dbgstr_rect
(
nc
->
rgrc
+
2
));
if
(
nc
->
lppos
)
TRACE
(
"WINDOWPOS hwnd=%p, after=%p, at (%d,%d) w=%d h=%d, flags=0x%08x
\n
"
,
nc
->
lppos
->
hwnd
,
nc
->
lppos
->
hwndInsertAfter
,
nc
->
lppos
->
x
,
nc
->
lppos
->
y
,
nc
->
lppos
->
cx
,
nc
->
lppos
->
cy
,
nc
->
lppos
->
flags
);
}
break
;
case
WM_NOTIFY
:
...
...
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