diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-10-27 14:42:32 -0500 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-01 16:34:09 -0500 |
| commit | bad2e93524f376cfeb76d5231d4b08510bdad033 (patch) | |
| tree | b201ec4b1495a0af4805ea6b0bc4fce9f8bde7b7 /src/api/burn/balutil/inc/IBAFunctions.h | |
| parent | 8fa040da9d0d3826f5ffda6bcbec4f53abd97452 (diff) | |
| download | wix-bad2e93524f376cfeb76d5231d4b08510bdad033.tar.gz wix-bad2e93524f376cfeb76d5231d4b08510bdad033.tar.bz2 wix-bad2e93524f376cfeb76d5231d4b08510bdad033.zip | |
Add more thmutil window messages to simplify handling control events.
Diffstat (limited to 'src/api/burn/balutil/inc/IBAFunctions.h')
| -rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 22 |
1 files changed, 22 insertions, 0 deletions
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 | |||
| 39 | __inout BOOL* pfProcessed, | 39 | __inout BOOL* pfProcessed, |
| 40 | __inout WORD* pwId | 40 | __inout WORD* pwId |
| 41 | ) = 0; | 41 | ) = 0; |
| 42 | |||
| 43 | // OnThemeControlWmCommand - Called when WM_COMMAND is received for a control. | ||
| 44 | // | ||
| 45 | STDMETHOD(OnThemeControlWmCommand)( | ||
| 46 | __in WPARAM wParam, | ||
| 47 | __in LPCWSTR wzName, | ||
| 48 | __in WORD wId, | ||
| 49 | __in HWND hWnd, | ||
| 50 | __inout BOOL* pfProcessed, | ||
| 51 | __inout LRESULT* plResult | ||
| 52 | ) = 0; | ||
| 53 | |||
| 54 | // OnThemeControlWmNotify - Called when WM_NOTIFY is received for a control. | ||
| 55 | // | ||
| 56 | STDMETHOD(OnThemeControlWmNotify)( | ||
| 57 | __in LPNMHDR lParam, | ||
| 58 | __in LPCWSTR wzName, | ||
| 59 | __in WORD wId, | ||
| 60 | __in HWND hWnd, | ||
| 61 | __inout BOOL* pfProcessed, | ||
| 62 | __inout LRESULT* plResult | ||
| 63 | ) = 0; | ||
| 42 | }; | 64 | }; |
