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
773efce7
Commit
773efce7
authored
Aug 08, 2000
by
Aric Stewart
Committed by
Alexandre Julliard
Aug 08, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reworked how selections are kept track of in the list view. Selections
are now listed as a sorted range of paired integers.
parent
94f74144
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
listview.c
dlls/comctl32/listview.c
+0
-0
listview.h
include/listview.h
+6
-0
No files found.
dlls/comctl32/listview.c
View file @
773efce7
This diff is collapsed.
Click to expand it.
include/listview.h
View file @
773efce7
...
...
@@ -40,6 +40,11 @@ typedef struct tagLISTVIEW_ITEM
}
LISTVIEW_ITEM
;
typedef
struct
tagLISTVIEW_SELECTION
{
DWORD
lower
;
DWORD
upper
;
}
LISTVIEW_SELECTION
;
typedef
struct
tagLISTVIEW_INFO
{
...
...
@@ -52,6 +57,7 @@ typedef struct tagLISTVIEW_INFO
BOOL
bLButtonDown
;
BOOL
bRButtonDown
;
INT
nFocusedItem
;
HDPA
hdpaSelectionRanges
;
INT
nItemHeight
;
INT
nItemWidth
;
INT
nSelectionMark
;
...
...
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