Commit b943b8c3 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

include: Added missing Edit_* defines.

parent 6bd804a4
......@@ -5336,6 +5336,14 @@ typedef struct _tagEDITBALLOONTIP
(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))
#define Edit_SetHilite(hwnd, start, end) \
SNDMSG((hwnd), EM_SETHILITE, start, end)
#define Edit_GetHilite(hwnd) \
((DWORD)SNDMSG((hwnd), EM_GETHILITE, 0L, 0L))
#define Edit_ShowBalloonTip(hwnd, tip) \
(BOOL)SNDMSG((hwnd), EM_SHOWBALLOONTIP, 0, (LPARAM)(tip))
#define Edit_HideBalloonTip(hwnd) \
(BOOL)SNDMSG((hwnd), EM_HIDEBALLOONTIP, 0, 0)
/**************************************************************************
* 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