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/BalBaseBAFunctions.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/BalBaseBAFunctions.h')
-rw-r--r-- | src/api/burn/balutil/inc/BalBaseBAFunctions.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/api/burn/balutil/inc/BalBaseBAFunctions.h b/src/api/burn/balutil/inc/BalBaseBAFunctions.h index c2c8a6dc..f6c33f58 100644 --- a/src/api/burn/balutil/inc/BalBaseBAFunctions.h +++ b/src/api/burn/balutil/inc/BalBaseBAFunctions.h | |||
@@ -850,6 +850,30 @@ public: // IBAFunctions | |||
850 | return S_OK; | 850 | return S_OK; |
851 | } | 851 | } |
852 | 852 | ||
853 | virtual STDMETHODIMP OnThemeControlWmCommand( | ||
854 | __in WPARAM /*wParam*/, | ||
855 | __in LPCWSTR /*wzName*/, | ||
856 | __in WORD /*wId*/, | ||
857 | __in HWND /*hWnd*/, | ||
858 | __inout BOOL* /*pfProcessed*/, | ||
859 | __inout LRESULT* /*plResult*/ | ||
860 | ) | ||
861 | { | ||
862 | return S_OK; | ||
863 | } | ||
864 | |||
865 | virtual STDMETHODIMP OnThemeControlWmNotify( | ||
866 | __in LPNMHDR /*lParam*/, | ||
867 | __in LPCWSTR /*wzName*/, | ||
868 | __in WORD /*wId*/, | ||
869 | __in HWND /*hWnd*/, | ||
870 | __inout BOOL* /*pfProcessed*/, | ||
871 | __inout LRESULT* /*plResult*/ | ||
872 | ) | ||
873 | { | ||
874 | return S_OK; | ||
875 | } | ||
876 | |||
853 | protected: | 877 | protected: |
854 | CBalBaseBAFunctions( | 878 | CBalBaseBAFunctions( |
855 | __in HMODULE hModule, | 879 | __in HMODULE hModule, |