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
2beb9c10
Commit
2beb9c10
authored
Jun 14, 2002
by
Guy L. Albertelli
Committed by
Alexandre Julliard
Jun 14, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Dump out the TCITEM structure for appropriate messages.
- Dump out the rectangle for the TCM_ADJUSTRECT message.
parent
6c7769e4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
spy.c
windows/spy.c
+16
-0
No files found.
windows/spy.c
View file @
2beb9c10
...
...
@@ -2003,6 +2003,22 @@ void SPY_DumpStructure (SPY_INSTANCE *sp_e, BOOL enter)
}
break
;
}
case
TCM_INSERTITEMW
:
case
TCM_INSERTITEMA
:
case
TCM_SETITEMW
:
case
TCM_SETITEMA
:
if
(
!
enter
)
break
;
/* fall through */
case
TCM_GETITEMW
:
case
TCM_GETITEMA
:
{
TCITEMA
*
item
=
(
TCITEMA
*
)
sp_e
->
lParam
;
if
(
item
)
{
SPY_DumpMem
(
"TCITEM"
,
(
UINT
*
)
item
,
sizeof
(
TCITEMA
));
}
break
;
}
case
TCM_ADJUSTRECT
:
case
LVM_GETITEMRECT
:
case
LVM_GETSUBITEMRECT
:
{
...
...
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