From 7a29e16fbd156a992c758046a678e91bb16a90dc Mon Sep 17 00:00:00 2001 From: Pierre Schweitzer Date: Sat, 7 Jan 2017 20:23:50 +0000 Subject: [PATCH] [PSDK] Define Button_SetElevationRequiredState() and BCM_SETSHIELD. Reviewed by Giannis. CORE-12617 svn path=/trunk/; revision=73511 --- reactos/sdk/include/psdk/commctrl.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/sdk/include/psdk/commctrl.h b/reactos/sdk/include/psdk/commctrl.h index 442467d0b97..5232aa90811 100644 --- a/reactos/sdk/include/psdk/commctrl.h +++ b/reactos/sdk/include/psdk/commctrl.h @@ -4615,6 +4615,9 @@ typedef struct { #define BCM_GETTEXTMARGIN (BCM_FIRST+0x5) #define Button_GetTextMargin(hwnd,pmargin) (BOOL)SNDMSG((hwnd),BCM_GETTEXTMARGIN,0,(LPARAM)(pmargin)) +#define BCM_SETSHIELD (BCM_FIRST+0xC) +#define Button_SetElevationRequiredState(hwnd,frequired) (BOOL)SNDMSG((hwnd),BCM_SETSHIELD,0,(LPARAM)(frequired)) + typedef struct tagNMBCHOTITEM { NMHDR hdr; DWORD dwFlags;