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
dc17f8de
Commit
dc17f8de
authored
Nov 08, 1998
by
Eric Kohl
Committed by
Alexandre Julliard
Nov 08, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added preliminary hit testing. Makes regedit.exe happy ;-)
parent
f2809619
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
listview.c
dlls/comctl32/listview.c
+20
-1
No files found.
dlls/comctl32/listview.c
View file @
dc17f8de
...
...
@@ -504,6 +504,23 @@ LISTVIEW_GetTextColor (WND *wndPtr, WPARAM32 wParam, LPARAM lParam)
static
LRESULT
LISTVIEW_HitTest
(
WND
*
wndPtr
,
WPARAM32
wParam
,
LPARAM
lParam
)
{
// LISTVIEW_INFO *infoPtr = LISTVIEW_GetInfoPtr(wndPtr);
LPLVHITTESTINFO
lpht
=
(
LPLVHITTESTINFO
)
lParam
;
FIXME
(
listview
,
"(%p): stub!
\n
"
,
lpht
);
/* FIXME: preliminary */
lpht
->
flags
=
LVHT_NOWHERE
;
lpht
->
iItem
=
-
1
;
lpht
->
iSubItem
=
0
;
return
-
1
;
}
static
LRESULT
LISTVIEW_InsertColumn32A
(
WND
*
wndPtr
,
WPARAM32
wParam
,
LPARAM
lParam
)
{
LISTVIEW_INFO
*
infoPtr
=
LISTVIEW_GetInfoPtr
(
wndPtr
);
...
...
@@ -1368,7 +1385,9 @@ LISTVIEW_WindowProc (HWND32 hwnd, UINT32 uMsg, WPARAM32 wParam, LPARAM lParam)
// case LVM_GETUNICODEFORMAT:
// case LVM_GETVIEWRECT:
// case LVM_GETWORKAREAS:
// case LVM_HITTEST:
case
LVM_HITTEST
:
return
LISTVIEW_HitTest
(
wndPtr
,
wParam
,
lParam
);
case
LVM_INSERTCOLUMN32A
:
return
LISTVIEW_InsertColumn32A
(
wndPtr
,
wParam
,
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