diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-04-22 16:55:29 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-04-23 15:40:21 -0500 |
commit | 72e20f682c0d64102e86439ba5527dd0d71932ae (patch) | |
tree | c62618b0f6b99d3bffa3c6cd01251a29b84fcc05 /src/burn/engine/userexperience.cpp | |
parent | b82c6a2b7d451212fb0b2e32ca4d5d86c953d81a (diff) | |
download | wix-72e20f682c0d64102e86439ba5527dd0d71932ae.tar.gz wix-72e20f682c0d64102e86439ba5527dd0d71932ae.tar.bz2 wix-72e20f682c0d64102e86439ba5527dd0d71932ae.zip |
Add RepairCondition.
Fixes 6758
Diffstat (limited to 'src/burn/engine/userexperience.cpp')
-rw-r--r-- | src/burn/engine/userexperience.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/burn/engine/userexperience.cpp b/src/burn/engine/userexperience.cpp index a1a010d2..a3cbcd4a 100644 --- a/src/burn/engine/userexperience.cpp +++ b/src/burn/engine/userexperience.cpp | |||
@@ -2169,6 +2169,7 @@ EXTERN_C BAAPI UserExperienceOnPlanPackageBegin( | |||
2169 | __in BOOTSTRAPPER_PACKAGE_STATE state, | 2169 | __in BOOTSTRAPPER_PACKAGE_STATE state, |
2170 | __in BOOL fCached, | 2170 | __in BOOL fCached, |
2171 | __in BOOTSTRAPPER_PACKAGE_CONDITION_RESULT installCondition, | 2171 | __in BOOTSTRAPPER_PACKAGE_CONDITION_RESULT installCondition, |
2172 | __in BOOTSTRAPPER_PACKAGE_CONDITION_RESULT repairCondition, | ||
2172 | __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState, | 2173 | __inout BOOTSTRAPPER_REQUEST_STATE* pRequestedState, |
2173 | __inout BOOTSTRAPPER_CACHE_TYPE* pRequestedCacheType | 2174 | __inout BOOTSTRAPPER_CACHE_TYPE* pRequestedCacheType |
2174 | ) | 2175 | ) |
@@ -2182,6 +2183,7 @@ EXTERN_C BAAPI UserExperienceOnPlanPackageBegin( | |||
2182 | args.state = state; | 2183 | args.state = state; |
2183 | args.fCached = fCached; | 2184 | args.fCached = fCached; |
2184 | args.installCondition = installCondition; | 2185 | args.installCondition = installCondition; |
2186 | args.repairCondition = repairCondition; | ||
2185 | args.recommendedState = *pRequestedState; | 2187 | args.recommendedState = *pRequestedState; |
2186 | args.recommendedCacheType = *pRequestedCacheType; | 2188 | args.recommendedCacheType = *pRequestedCacheType; |
2187 | 2189 | ||