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
8ec3423e
Commit
8ec3423e
authored
Jan 27, 2007
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Feb 05, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Dump contents of CREATESTRUCT in WM_[NC]CREATE of the message spy.
parent
0510a7a5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
0 deletions
+17
-0
spy.c
dlls/user32/spy.c
+17
-0
No files found.
dlls/user32/spy.c
View file @
8ec3423e
...
...
@@ -2411,6 +2411,23 @@ static void SPY_DumpStructure(const SPY_INSTANCE *sp_e, BOOL enter)
TRACE
(
"itemData=0x%08lx
\n
"
,
lpmis
->
itemData
);
}
break
;
case
WM_NCCREATE
:
case
WM_CREATE
:
{
BOOL
unicode
;
CREATESTRUCTA
*
cs
;
if
(
!
enter
)
break
;
unicode
=
IsWindowUnicode
(
sp_e
->
msg_hwnd
);
cs
=
(
CREATESTRUCTA
*
)
sp_e
->
lParam
;
TRACE
(
"%s %s ex=%08x style=%08x %d,%d %dx%d parent=%p menu=%p inst=%p params=%p
\n
"
,
unicode
?
debugstr_w
((
LPCWSTR
)
cs
->
lpszName
)
:
debugstr_a
(
cs
->
lpszName
),
unicode
?
debugstr_w
((
LPCWSTR
)
cs
->
lpszClass
)
:
debugstr_a
(
cs
->
lpszClass
),
cs
->
dwExStyle
,
cs
->
style
,
cs
->
x
,
cs
->
y
,
cs
->
cx
,
cs
->
cy
,
cs
->
hwndParent
,
cs
->
hMenu
,
cs
->
hInstance
,
cs
->
lpCreateParams
);
break
;
}
case
WM_SIZE
:
if
(
!
enter
)
break
;
TRACE
(
"cx=%d cy=%d
\n
"
,
LOWORD
(
sp_e
->
lParam
),
HIWORD
(
sp_e
->
lParam
));
...
...
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