Commit aa601fdf authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

comctl32/edit: Add missing message macros.

parent d19e34d8
...@@ -23,9 +23,7 @@ ...@@ -23,9 +23,7 @@
* *
* TODO: * TODO:
* - EDITBALLOONTIP structure * - EDITBALLOONTIP structure
* - EM_GETCUEBANNER/Edit_GetCueBannerText
* - EM_HIDEBALLOONTIP/Edit_HideBalloonTip * - EM_HIDEBALLOONTIP/Edit_HideBalloonTip
* - EM_SETCUEBANNER/Edit_SetCueBannerText
* - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip * - EM_SHOWBALLOONTIP/Edit_ShowBalloonTip
* - EM_GETIMESTATUS, EM_SETIMESTATUS * - EM_GETIMESTATUS, EM_SETIMESTATUS
* - EN_ALIGN_LTR_EC * - EN_ALIGN_LTR_EC
......
...@@ -5259,6 +5259,13 @@ typedef struct _tagEDITBALLOONTIP ...@@ -5259,6 +5259,13 @@ typedef struct _tagEDITBALLOONTIP
#define EM_NOSETFOCUS (ECM_FIRST + 7) #define EM_NOSETFOCUS (ECM_FIRST + 7)
#define EM_TAKEFOCUS (ECM_FIRST + 8) #define EM_TAKEFOCUS (ECM_FIRST + 8)
#define Edit_SetCueBannerText(hwnd, text) \
(BOOL)SNDMSG((hwnd), EM_SETCUEBANNER, 0, (LPARAM)(text))
#define Edit_SetCueBannerTextFocused(hwnd, text, drawfocused) \
(BOOL)SNDMSG((hwnd), EM_SETCUEBANNER, (WPARAM)(drawfocused), (LPARAM)(text))
#define Edit_GetCueBannerText(hwnd, buff, buff_size) \
(BOOL)SNDMSG((hwnd), EM_GETCUEBANNER, (WPARAM)(buff), (LPARAM)(buff_size))
/************************************************************************** /**************************************************************************
* Listbox control * Listbox control
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment