From 4a6619bb4c8d90e7acfaf5291e326aa26897caa4 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Feb 2004 23:15:12 +0000 Subject: [PATCH] added WM_UPDATEUISTATE and related stuff git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25585 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/msw/missing.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/include/wx/msw/missing.h b/include/wx/msw/missing.h index b5123ae576..98112c5640 100644 --- a/include/wx/msw/missing.h +++ b/include/wx/msw/missing.h @@ -560,6 +560,21 @@ typedef struct { #define VK_OEM_PERIOD 0xBE #endif +#ifndef WM_UPDATEUISTATE + #define WM_UPDATEUISTATE 0x128 +#endif + +#ifndef UIS_INITIALIZE + #define UIS_INITIALIZE 3 +#endif + +#ifndef UISF_HIDEFOCUS + #define UISF_HIDEFOCUS 1 +#endif + +#ifndef UISF_HIDEACCEL + #define UISF_HIDEACCEL 2 +#endif #endif // _WX_MISSING_H_ -- 2.50.0