aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-04-13 00:09:00 -0700
committerRob Mensching <rob@firegiant.com>2021-04-14 12:15:52 -0700
commit6f7bb97daa1ae6bf2486b1c566c29e1b524b7548 (patch)
tree352197acd357fc135d9cbe018f95cdb9d2c05aaa /src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
parent70adfc49cb05da4e7b9eb50a0c47635d2d20b366 (diff)
downloadwix-6f7bb97daa1ae6bf2486b1c566c29e1b524b7548.tar.gz
wix-6f7bb97daa1ae6bf2486b1c566c29e1b524b7548.tar.bz2
wix-6f7bb97daa1ae6bf2486b1c566c29e1b524b7548.zip
Add MEND request state to repair any missing files in MSI packages
Diffstat (limited to 'src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h')
-rw-r--r--src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
index c0e4ded1..99e9b9f0 100644
--- a/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
+++ b/src/WixToolset.BootstrapperCore.Native/inc/BootstrapperEngine.h
@@ -37,6 +37,7 @@ enum BOOTSTRAPPER_ACTION_STATE
37 BOOTSTRAPPER_ACTION_STATE_UNINSTALL, 37 BOOTSTRAPPER_ACTION_STATE_UNINSTALL,
38 BOOTSTRAPPER_ACTION_STATE_INSTALL, 38 BOOTSTRAPPER_ACTION_STATE_INSTALL,
39 BOOTSTRAPPER_ACTION_STATE_MODIFY, 39 BOOTSTRAPPER_ACTION_STATE_MODIFY,
40 BOOTSTRAPPER_ACTION_STATE_MEND,
40 BOOTSTRAPPER_ACTION_STATE_REPAIR, 41 BOOTSTRAPPER_ACTION_STATE_REPAIR,
41 BOOTSTRAPPER_ACTION_STATE_MINOR_UPGRADE, 42 BOOTSTRAPPER_ACTION_STATE_MINOR_UPGRADE,
42}; 43};
@@ -58,6 +59,7 @@ enum BOOTSTRAPPER_REQUEST_STATE
58 BOOTSTRAPPER_REQUEST_STATE_ABSENT, 59 BOOTSTRAPPER_REQUEST_STATE_ABSENT,
59 BOOTSTRAPPER_REQUEST_STATE_CACHE, 60 BOOTSTRAPPER_REQUEST_STATE_CACHE,
60 BOOTSTRAPPER_REQUEST_STATE_PRESENT, 61 BOOTSTRAPPER_REQUEST_STATE_PRESENT,
62 BOOTSTRAPPER_REQUEST_STATE_MEND,
61 BOOTSTRAPPER_REQUEST_STATE_REPAIR, 63 BOOTSTRAPPER_REQUEST_STATE_REPAIR,
62}; 64};
63 65