include: Use macro SNDMSG to send messages.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
8a430feec4
commit
e2adb9b74c
|
@ -5166,9 +5166,9 @@ static const WCHAR WC_COMBOBOXW[] = { 'C','o','m','b','o','B','o','x',0 };
|
||||||
#define CB_GETCUEBANNER (CBM_FIRST + 4)
|
#define CB_GETCUEBANNER (CBM_FIRST + 4)
|
||||||
|
|
||||||
#define ComboBox_GetMinVisible(hwnd) \
|
#define ComboBox_GetMinVisible(hwnd) \
|
||||||
((int)SendMessage((hwnd), CB_GETMINVISIBLE, 0, 0))
|
((INT)SNDMSG((hwnd), CB_GETMINVISIBLE, 0, 0))
|
||||||
#define ComboBox_SetMinVisible(hwnd, count) \
|
#define ComboBox_SetMinVisible(hwnd, count) \
|
||||||
((BOOL)SendMessage((hwnd), CB_SETMINVISIBLE, (WPARAM)(count), 0))
|
((BOOL)SNDMSG((hwnd), CB_SETMINVISIBLE, (WPARAM)(count), 0))
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* Edit control
|
* Edit control
|
||||||
|
|
Loading…
Reference in New Issue