From bad2e93524f376cfeb76d5231d4b08510bdad033 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 27 Oct 2021 14:42:32 -0500 Subject: Add more thmutil window messages to simplify handling control events. --- src/api/burn/balutil/inc/IBAFunctions.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src/api/burn/balutil/inc/IBAFunctions.h') diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h index d41b7c9b..63395e1e 100644 --- a/src/api/burn/balutil/inc/IBAFunctions.h +++ b/src/api/burn/balutil/inc/IBAFunctions.h @@ -39,4 +39,26 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49 __inout BOOL* pfProcessed, __inout WORD* pwId ) = 0; + + // OnThemeControlWmCommand - Called when WM_COMMAND is received for a control. + // + STDMETHOD(OnThemeControlWmCommand)( + __in WPARAM wParam, + __in LPCWSTR wzName, + __in WORD wId, + __in HWND hWnd, + __inout BOOL* pfProcessed, + __inout LRESULT* plResult + ) = 0; + + // OnThemeControlWmNotify - Called when WM_NOTIFY is received for a control. + // + STDMETHOD(OnThemeControlWmNotify)( + __in LPNMHDR lParam, + __in LPCWSTR wzName, + __in WORD wId, + __in HWND hWnd, + __inout BOOL* pfProcessed, + __inout LRESULT* plResult + ) = 0; }; -- cgit v1.2.3-55-g6feb