aboutsummaryrefslogtreecommitdiff
path: root/src/wixstdba/WixStandardBootstrapperApplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixstdba/WixStandardBootstrapperApplication.cpp')
-rw-r--r--src/wixstdba/WixStandardBootstrapperApplication.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wixstdba/WixStandardBootstrapperApplication.cpp b/src/wixstdba/WixStandardBootstrapperApplication.cpp
index afc6a3ee..2a05b1cb 100644
--- a/src/wixstdba/WixStandardBootstrapperApplication.cpp
+++ b/src/wixstdba/WixStandardBootstrapperApplication.cpp
@@ -705,6 +705,7 @@ public: // IBootstrapperApplication
705 virtual STDMETHODIMP OnExecutePackageBegin( 705 virtual STDMETHODIMP OnExecutePackageBegin(
706 __in_z LPCWSTR wzPackageId, 706 __in_z LPCWSTR wzPackageId,
707 __in BOOL fExecute, 707 __in BOOL fExecute,
708 __in BOOTSTRAPPER_ACTION_STATE action,
708 __inout BOOL* pfCancel 709 __inout BOOL* pfCancel
709 ) 710 )
710 { 711 {
@@ -759,7 +760,7 @@ public: // IBootstrapperApplication
759 } 760 }
760 761
761 ReleaseStr(sczFormattedString); 762 ReleaseStr(sczFormattedString);
762 return __super::OnExecutePackageBegin(wzPackageId, fExecute, pfCancel); 763 return __super::OnExecutePackageBegin(wzPackageId, fExecute, action, pfCancel);
763 } 764 }
764 765
765 766