Zhiyi Zhang : include: Add missing notification codes.

Alexandre Julliard julliard at winehq.org
Thu Aug 16 13:42:47 CDT 2018


Module: wine
Branch: master
Commit: e93dcf5ca050653079d257eb255c581c216d91c2
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=e93dcf5ca050653079d257eb255c581c216d91c2

Author: Zhiyi Zhang <zzhang at codeweavers.com>
Date:   Thu Aug 16 11:57:02 2018 +0800

include: Add missing notification codes.

Signed-off-by: Zhiyi Zhang <zzhang at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 include/commctrl.h | 4 ++++
 include/richedit.h | 3 +++
 2 files changed, 7 insertions(+)

diff --git a/include/commctrl.h b/include/commctrl.h
index b9e3ae6..c01d7c2 100644
--- a/include/commctrl.h
+++ b/include/commctrl.h
@@ -1034,6 +1034,7 @@ static const WCHAR WC_BUTTONW[] = { 'B','u','t','t','o','n',0 };
 
 #define BCN_HOTITEMCHANGE       (BCN_FIRST + 1)
 #define BCN_DROPDOWN            (BCN_FIRST + 2)
+#define NM_GETCUSTOMSPLITRECT   (BCN_FIRST + 3)
 
 #define BCM_FIRST               0x1600
 #define BCM_GETIDEALSIZE        (BCM_FIRST + 1)
@@ -1796,6 +1797,7 @@ static const WCHAR TOOLTIPS_CLASSW[] = { 't','o','o','l','t','i','p','s','_',
 #define TTN_GETDISPINFO         WINELIB_NAME_AW(TTN_GETDISPINFO)
 #define TTN_SHOW                (TTN_FIRST-1)
 #define TTN_POP                 (TTN_FIRST-2)
+#define TTN_LINKCLICK           (TTN_FIRST-3)
 
 #define TTN_NEEDTEXT		TTN_GETDISPINFO
 #define TTN_NEEDTEXTA 		TTN_GETDISPINFOA
@@ -2289,6 +2291,7 @@ static const WCHAR WC_PAGESCROLLERW[] = { 'S','y','s','P','a','g','e','r',0 };
 #define PGN_LAST                (0U-950U)
 #define PGN_SCROLL              (PGN_FIRST-1)
 #define PGN_CALCSIZE            (PGN_FIRST-2)
+#define PGN_HOTITEMCHANGE       (PGN_FIRST-3)
 
 #include <pshpack1.h>
 
@@ -4723,6 +4726,7 @@ static const WCHAR MONTHCAL_CLASSW[] = { 'S','y','s',
 
 /* Notifications */
 
+#define MCN_VIEWCHANGE        MCN_FIRST
 #define MCN_SELCHANGE         (MCN_FIRST + 1)
 #define MCN_GETDAYSTATE       (MCN_FIRST + 3)
 #define MCN_SELECT            (MCN_FIRST + 4)
diff --git a/include/richedit.h b/include/richedit.h
index 63221e2..c224843 100644
--- a/include/richedit.h
+++ b/include/richedit.h
@@ -205,6 +205,9 @@ static const WCHAR RICHEDIT_CLASS20W[] = { 'R','i','c','h','E','d','i','t','2','
 #define EN_LOWFIRTF                     0x070f
 #define EN_ALIGNLTR			0x0710
 #define EN_ALIGNRTL			0x0711
+#define EN_CLIPFORMAT                   0x0712
+#define EN_STARTCOMPOSITION             0x0713
+#define EN_ENDCOMPOSITION               0x0714
 
 
 typedef DWORD (CALLBACK * EDITSTREAMCALLBACK)( DWORD_PTR, LPBYTE, LONG, LONG * );




More information about the wine-cvs mailing list