diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-11-08 15:24:46 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-11-10 17:33:25 -0600 |
| commit | 9d3af7547bb790d39157dd36dfa862a1abf47beb (patch) | |
| tree | 410e6e46daf244dd4e087c658b827fea6231119a /src/api | |
| parent | b49ab4e082127e450b266c25218905c94495892e (diff) | |
| download | wix-9d3af7547bb790d39157dd36dfa862a1abf47beb.tar.gz wix-9d3af7547bb790d39157dd36dfa862a1abf47beb.tar.bz2 wix-9d3af7547bb790d39157dd36dfa862a1abf47beb.zip | |
Go back to thmutil not interfering with wixstdba controls.
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/burn/balutil/inc/BAFunctions.h | 1 | ||||
| -rw-r--r-- | src/api/burn/balutil/inc/BalBaseBAFunctions.h | 3 | ||||
| -rw-r--r-- | src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h | 2 | ||||
| -rw-r--r-- | src/api/burn/balutil/inc/IBAFunctions.h | 3 |
4 files changed, 6 insertions, 3 deletions
diff --git a/src/api/burn/balutil/inc/BAFunctions.h b/src/api/burn/balutil/inc/BAFunctions.h index 149a12f8..21cace1f 100644 --- a/src/api/burn/balutil/inc/BAFunctions.h +++ b/src/api/burn/balutil/inc/BAFunctions.h | |||
| @@ -141,6 +141,7 @@ struct BA_FUNCTIONS_ONTHEMECONTROLLOADING_RESULTS | |||
| 141 | DWORD cbSize; | 141 | DWORD cbSize; |
| 142 | BOOL fProcessed; | 142 | BOOL fProcessed; |
| 143 | WORD wId; | 143 | WORD wId; |
| 144 | BOOL fDisableAutomaticFunctionality; | ||
| 144 | }; | 145 | }; |
| 145 | 146 | ||
| 146 | struct BA_FUNCTIONS_ONTHEMECONTROLWMCOMMAND_ARGS | 147 | struct BA_FUNCTIONS_ONTHEMECONTROLWMCOMMAND_ARGS |
diff --git a/src/api/burn/balutil/inc/BalBaseBAFunctions.h b/src/api/burn/balutil/inc/BalBaseBAFunctions.h index 1493253b..2866f6b0 100644 --- a/src/api/burn/balutil/inc/BalBaseBAFunctions.h +++ b/src/api/burn/balutil/inc/BalBaseBAFunctions.h | |||
| @@ -835,7 +835,8 @@ public: // IBAFunctions | |||
| 835 | virtual STDMETHODIMP OnThemeControlLoading( | 835 | virtual STDMETHODIMP OnThemeControlLoading( |
| 836 | __in LPCWSTR /*wzName*/, | 836 | __in LPCWSTR /*wzName*/, |
| 837 | __inout BOOL* /*pfProcessed*/, | 837 | __inout BOOL* /*pfProcessed*/, |
| 838 | __inout WORD* /*pwId*/ | 838 | __inout WORD* /*pwId*/, |
| 839 | __inout BOOL* /*pfDisableAutomaticFunctionality*/ | ||
| 839 | ) | 840 | ) |
| 840 | { | 841 | { |
| 841 | return S_OK; | 842 | return S_OK; |
diff --git a/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h b/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h index 135f7c76..e841c660 100644 --- a/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h +++ b/src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h | |||
| @@ -30,7 +30,7 @@ static HRESULT BalBaseBAFunctionsProcOnThemeControlLoading( | |||
| 30 | __inout BA_FUNCTIONS_ONTHEMECONTROLLOADING_RESULTS* pResults | 30 | __inout BA_FUNCTIONS_ONTHEMECONTROLLOADING_RESULTS* pResults |
| 31 | ) | 31 | ) |
| 32 | { | 32 | { |
| 33 | return pBAFunctions->OnThemeControlLoading(pArgs->wzName, &pResults->fProcessed, &pResults->wId); | 33 | return pBAFunctions->OnThemeControlLoading(pArgs->wzName, &pResults->fProcessed, &pResults->wId, &pResults->fDisableAutomaticFunctionality); |
| 34 | } | 34 | } |
| 35 | 35 | ||
| 36 | static HRESULT BalBaseBAFunctionsProcOnThemeControlWmCommand( | 36 | static HRESULT BalBaseBAFunctionsProcOnThemeControlWmCommand( |
diff --git a/src/api/burn/balutil/inc/IBAFunctions.h b/src/api/burn/balutil/inc/IBAFunctions.h index 50126ba1..ea6c116b 100644 --- a/src/api/burn/balutil/inc/IBAFunctions.h +++ b/src/api/burn/balutil/inc/IBAFunctions.h | |||
| @@ -35,7 +35,8 @@ DECLARE_INTERFACE_IID_(IBAFunctions, IBootstrapperApplication, "0FB445ED-17BD-49 | |||
| 35 | STDMETHOD(OnThemeControlLoading)( | 35 | STDMETHOD(OnThemeControlLoading)( |
| 36 | __in LPCWSTR wzName, | 36 | __in LPCWSTR wzName, |
| 37 | __inout BOOL* pfProcessed, | 37 | __inout BOOL* pfProcessed, |
| 38 | __inout WORD* pwId | 38 | __inout WORD* pwId, |
| 39 | __inout BOOL* pfDisableAutomaticFunctionality | ||
| 39 | ) = 0; | 40 | ) = 0; |
| 40 | 41 | ||
| 41 | // OnThemeControlWmCommand - Called when WM_COMMAND is received for a control. | 42 | // OnThemeControlWmCommand - Called when WM_COMMAND is received for a control. |
