[PATCH] include: Add more ListView macros

Alistair Leslie-Hughes leslie_alistair at hotmail.com
Sun Aug 18 23:15:39 CDT 2019


Remove duplicate ListView_GetGroupInfoByIndex at the sam time.

Signed-off-by: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
---
 include/commctrl.h | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/include/commctrl.h b/include/commctrl.h
index 906f2c30e9..700b335fbb 100644
--- a/include/commctrl.h
+++ b/include/commctrl.h
@@ -4190,8 +4190,14 @@ typedef struct tagLVITEMINDEX
       ((rc) ? (((RECT*)(rc))->top = type), (LPARAM)(RECT*)(rc) : (LPARAM)(RECT*)NULL))
 #define ListView_GetGroupCount(hwnd) \
     SNDMSG((hwnd), LVM_GETGROUPCOUNT, (WPARAM)0, (LPARAM)0)
-#define ListView_GetGroupInfoByIndex(hwnd, index, grp) \
-    SNDMSG((hwnd), LVM_GETGROUPINFOBYINDEX, (WPARAM)(index), (LPARAM)(grp))
+#define ListView_GetItemIndexRect(hwnd, index, subitem, code, prc) \
+    (BOOL)SNDMSG((hwnd), LVM_GETITEMINDEXRECT, (WPARAM)(LVITEMINDEX*)(index), \
+      (prc ? ((((LPRECT)prc)->top = subitem), (((LPRECT)prc)->left = code), (LPARAM)prc) : (LPARAM)NULL)
+#define ListView_SetItemIndexState(hwndLV, index, data, mask) \
+{   LV_ITEM macro; macro.stateMask = (mask); macro.state = data; \
+    SNDMSG((hwndLV), LVM_SETITEMINDEXSTATE, (WPARAM)(LVITEMINDEX*)(index), (LPARAM)(LV_ITEM *)&macro); }
+#define ListView_GetNextItemIndex(hwnd, index, flags) \
+    (BOOL)SNDMSG((hwnd), LVM_GETNEXTITEMINDEX, (WPARAM)(LVITEMINDEX*)(index), MAKELPARAM((flags),0))
 
 /* Tab Control */
 
-- 
2.17.1




More information about the wine-devel mailing list