[5/5] comctl32/listview: Add LVN_INCREMENTALSEARCH definitions

Nikolay Sivov bunglehead at gmail.com
Mon May 11 03:01:26 CDT 2009


MSDN tells that it's a Vista notification but you can also see it in XP
testing ControlSpy5: typing on a focused control will place
Unknown 0xffffff5d notification to parent.

Changelog:
    - Add LVN_INCREMENTALSEARCH definitions

>From 3a9bc68b3eff80703c5599d51aebf387a38802bf Mon Sep 17 00:00:00 2001
From: Nikolay Sivov <bunglehead at gmail.com>
Date: Sun, 10 May 2009 14:42:44 +0400
Subject: Add LVN_INCREMENTALSEARCH definitions

---
 include/commctrl.h |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/include/commctrl.h b/include/commctrl.h
index 7b93497..d3c24cd 100644
--- a/include/commctrl.h
+++ b/include/commctrl.h
@@ -3253,12 +3253,20 @@ static const WCHAR WC_LISTVIEWW[] = { 'S','y','s',
 #define LVN_GETINFOTIPA         (LVN_FIRST-57)
 #define LVN_GETINFOTIPW         (LVN_FIRST-58)
 #define LVN_GETINFOTIP          WINELIB_NAME_AW(LVN_GETINFOTIP)
+#define LVN_INCREMENTALSEARCHA  (LVN_FIRST-62)
+#define LVN_INCREMENTALSEARCHW  (LVN_FIRST-63)
+#define LVN_INCREMENTALSEARCH   WINELIB_NAME_AW(LVN_INCREMENTALSEARCH)
 #define LVN_BEGINSCROLL         (LVN_FIRST-80)
 #define LVN_ENDSCROLL           (LVN_FIRST-81)
 #define LVN_LINKCLICK           (LVN_FIRST-84)
 #define LVN_ASYNCDRAWN          (LVN_FIRST-86)
 #define LVN_GETEMPTYMARKUP      (LVN_FIRST-87)
 
+/* LVN_INCREMENTALSEARCH return codes */
+#define LVNSCH_DEFAULT          -1
+#define LVNSCH_ERROR            -2
+#define LVNSCH_IGNORE           -3
+
 #define LVA_DEFAULT             0x0000
 #define LVA_ALIGNLEFT           0x0001
 #define LVA_ALIGNTOP            0x0002
-- 
1.5.6.5





More information about the wine-patches mailing list