aboutsummaryrefslogtreecommitdiff
path: root/src/api
diff options
context:
space:
mode:
Diffstat (limited to 'src/api')
-rw-r--r--src/api/burn/balutil/inc/BAFunctions.h1
-rw-r--r--src/api/burn/balutil/inc/BalBaseBAFunctions.h3
-rw-r--r--src/api/burn/balutil/inc/BalBaseBAFunctionsProc.h2
-rw-r--r--src/api/burn/balutil/inc/IBAFunctions.h3
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
146struct BA_FUNCTIONS_ONTHEMECONTROLWMCOMMAND_ARGS 147struct 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
36static HRESULT BalBaseBAFunctionsProcOnThemeControlWmCommand( 36static 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.