From 5f4829e678c9c5cd5e581b0075cfa4a6b263c66e Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Tue, 2 Mar 2021 15:11:58 -0600 Subject: Integrate OnUnregisterBegin changes in Burn headers. --- src/balutil/balutil.vcxproj | 8 ++++---- src/balutil/inc/BalBaseBAFunctions.h | 3 ++- src/balutil/inc/BalBaseBootstrapperApplication.h | 4 ++-- src/balutil/inc/BalBaseBootstrapperApplicationProc.h | 4 ++-- src/balutil/inc/IBootstrapperApplication.h | 3 ++- src/balutil/packages.config | 4 ++-- 6 files changed, 14 insertions(+), 12 deletions(-) (limited to 'src/balutil') diff --git a/src/balutil/balutil.vcxproj b/src/balutil/balutil.vcxproj index 578586e8..1c9a2372 100644 --- a/src/balutil/balutil.vcxproj +++ b/src/balutil/balutil.vcxproj @@ -2,8 +2,8 @@ - - + + @@ -98,8 +98,8 @@ This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. - - + + diff --git a/src/balutil/inc/BalBaseBAFunctions.h b/src/balutil/inc/BalBaseBAFunctions.h index 7699b8ff..55ed8cbe 100644 --- a/src/balutil/inc/BalBaseBAFunctions.h +++ b/src/balutil/inc/BalBaseBAFunctions.h @@ -548,7 +548,8 @@ public: // IBootstrapperApplication } virtual STDMETHODIMP OnUnregisterBegin( - __inout BOOL* /*pfCancel*/ + __in BOOL /*fKeepRegistration*/, + __inout BOOL* /*pfForceKeepRegistration*/ ) { return S_OK; diff --git a/src/balutil/inc/BalBaseBootstrapperApplication.h b/src/balutil/inc/BalBaseBootstrapperApplication.h index 59e57de1..ff1d07fd 100644 --- a/src/balutil/inc/BalBaseBootstrapperApplication.h +++ b/src/balutil/inc/BalBaseBootstrapperApplication.h @@ -719,10 +719,10 @@ public: // IBootstrapperApplication } virtual STDMETHODIMP OnUnregisterBegin( - __inout BOOL* pfCancel + __in BOOL /*fKeepRegistration*/, + __inout BOOL* /*pfForceKeepRegistration*/ ) { - *pfCancel |= CheckCanceled(); return S_OK; } diff --git a/src/balutil/inc/BalBaseBootstrapperApplicationProc.h b/src/balutil/inc/BalBaseBootstrapperApplicationProc.h index 6ce8710d..d971a2eb 100644 --- a/src/balutil/inc/BalBaseBootstrapperApplicationProc.h +++ b/src/balutil/inc/BalBaseBootstrapperApplicationProc.h @@ -443,11 +443,11 @@ static HRESULT BalBaseBAProcOnExecuteComplete( static HRESULT BalBaseBAProcOnUnregisterBegin( __in IBootstrapperApplication* pBA, - __in BA_ONUNREGISTERBEGIN_ARGS* /*pArgs*/, + __in BA_ONUNREGISTERBEGIN_ARGS* pArgs, __inout BA_ONUNREGISTERBEGIN_RESULTS* pResults ) { - return pBA->OnUnregisterBegin(&pResults->fCancel); + return pBA->OnUnregisterBegin(pArgs->fKeepRegistration, &pResults->fForceKeepRegistration); } static HRESULT BalBaseBAProcOnUnregisterComplete( diff --git a/src/balutil/inc/IBootstrapperApplication.h b/src/balutil/inc/IBootstrapperApplication.h index 7d710b26..01d0bb8a 100644 --- a/src/balutil/inc/IBootstrapperApplication.h +++ b/src/balutil/inc/IBootstrapperApplication.h @@ -465,7 +465,8 @@ DECLARE_INTERFACE_IID_(IBootstrapperApplication, IUnknown, "53C31D56-49C0-426B-A // OnUnregisterBegin - called when the engine unregisters the bundle. // STDMETHOD(OnUnregisterBegin)( - __inout BOOL* pfCancel + __in BOOL fKeepRegistration, + __inout BOOL* pfForceKeepRegistration ) = 0; // OnUnregisterComplete - called when the engine unregistration is complete. diff --git a/src/balutil/packages.config b/src/balutil/packages.config index 68970a7e..1ac5d2ac 100644 --- a/src/balutil/packages.config +++ b/src/balutil/packages.config @@ -1,6 +1,6 @@  - - + + \ No newline at end of file -- cgit v1.2.3-55-g6feb