aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/inc
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-02-24 17:42:31 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-02 15:47:43 -0600
commit100944a40f363c1a8ce0cd8c5c27728d1db0912e (patch)
treed0058249eebb18e738117c7b858671e2777f1340 /src/WixToolset.BootstrapperCore.Native/inc
parent7cf03f0ecc0a54062548656fadcacfba996cd459 (diff)
downloadwix-100944a40f363c1a8ce0cd8c5c27728d1db0912e.tar.gz
wix-100944a40f363c1a8ce0cd8c5c27728d1db0912e.tar.bz2
wix-100944a40f363c1a8ce0cd8c5c27728d1db0912e.zip
Let the BA request the bundle to stay installed from OnUnregisterBegin.
#6297
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BootstrapperApplication.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperApplication.h b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperApplication.h
index 0a89b3f4..6cf3477c 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperApplication.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperApplication.h
@@ -1089,12 +1089,13 @@ struct BA_ONSYSTEMSHUTDOWN_RESULTS
1089struct BA_ONUNREGISTERBEGIN_ARGS 1089struct BA_ONUNREGISTERBEGIN_ARGS
1090{ 1090{
1091 DWORD cbSize; 1091 DWORD cbSize;
1092 BOOL fKeepRegistration;
1092}; 1093};
1093 1094
1094struct BA_ONUNREGISTERBEGIN_RESULTS 1095struct BA_ONUNREGISTERBEGIN_RESULTS
1095{ 1096{
1096 DWORD cbSize; 1097 DWORD cbSize;
1097 BOOL fCancel; 1098 BOOL fForceKeepRegistration;
1098}; 1099};
1099 1100
1100struct BA_ONUNREGISTERCOMPLETE_ARGS 1101struct BA_ONUNREGISTERCOMPLETE_ARGS