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
f5221578
Commit
f5221578
authored
Oct 28, 2002
by
Dimitrie O. Paun
Committed by
Alexandre Julliard
Oct 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add LVHITTESTINFO debug helper. More tracing.
parent
17b97eb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletion
+13
-1
listview.c
dlls/comctl32/listview.c
+13
-1
No files found.
dlls/comctl32/listview.c
View file @
f5221578
...
...
@@ -670,6 +670,17 @@ undo:
}
static
char
*
debuglvhittestinfo
(
LPLVHITTESTINFO
lpht
)
{
if
(
lpht
)
{
char
*
buf
=
debug_getbuf
();
snprintf
(
buf
,
DEBUG_BUFFER_SIZE
,
"{pt=%s, flags=0x%x, iItem=%d, iSubItem=%d}"
,
debugpoint
(
&
lpht
->
pt
),
lpht
->
flags
,
lpht
->
iItem
,
lpht
->
iSubItem
);
return
buf
;
}
else
return
"(null)"
;
}
/******** Notification functions i************************************/
static
LRESULT
notify_hdr
(
LISTVIEW_INFO
*
infoPtr
,
INT
code
,
LPNMHDR
pnmh
)
...
...
@@ -709,7 +720,8 @@ static inline LRESULT notify_listview(LISTVIEW_INFO *infoPtr, INT code, LPNMLIST
static
LRESULT
notify_click
(
LISTVIEW_INFO
*
infoPtr
,
INT
code
,
LVHITTESTINFO
*
lvht
)
{
NMLISTVIEW
nmlv
;
TRACE
(
"code=%d, lvht=%s
\n
"
,
code
,
debuglvhittestinfo
(
lvht
));
ZeroMemory
(
&
nmlv
,
sizeof
(
nmlv
));
nmlv
.
iItem
=
lvht
->
iItem
;
nmlv
.
iSubItem
=
lvht
->
iSubItem
;
...
...
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