diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-08-03 14:55:23 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-08-03 15:57:24 -0500 |
commit | 124fef398a26bc8e139e889a2345602d2478590c (patch) | |
tree | 002c77e0c1d72b0cc0e46bed3c6f02d4179625fe /src/burn/engine/cache.h | |
parent | a896fec453056aa5e1ad803b04a672d2dceda981 (diff) | |
download | wix-124fef398a26bc8e139e889a2345602d2478590c.tar.gz wix-124fef398a26bc8e139e889a2345602d2478590c.tar.bz2 wix-124fef398a26bc8e139e889a2345602d2478590c.zip |
Add ability to skip a local path candidate if it failed verification.
Fixes 6818
Diffstat (limited to 'src/burn/engine/cache.h')
-rw-r--r-- | src/burn/engine/cache.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/burn/engine/cache.h b/src/burn/engine/cache.h index 9c698b4b..cc28166e 100644 --- a/src/burn/engine/cache.h +++ b/src/burn/engine/cache.h | |||
@@ -13,6 +13,7 @@ enum BURN_CACHE_MESSAGE_TYPE | |||
13 | BURN_CACHE_MESSAGE_BEGIN, | 13 | BURN_CACHE_MESSAGE_BEGIN, |
14 | BURN_CACHE_MESSAGE_SUCCESS, | 14 | BURN_CACHE_MESSAGE_SUCCESS, |
15 | BURN_CACHE_MESSAGE_COMPLETE, | 15 | BURN_CACHE_MESSAGE_COMPLETE, |
16 | BURN_CACHE_MESSAGE_FAILURE, | ||
16 | }; | 17 | }; |
17 | 18 | ||
18 | enum BURN_CACHE_STEP | 19 | enum BURN_CACHE_STEP |
@@ -68,6 +69,10 @@ typedef struct _BURN_CACHE_MESSAGE | |||
68 | { | 69 | { |
69 | HRESULT hrStatus; | 70 | HRESULT hrStatus; |
70 | } complete; | 71 | } complete; |
72 | struct | ||
73 | { | ||
74 | BURN_CACHE_STEP cacheStep; | ||
75 | } failure; | ||
71 | }; | 76 | }; |
72 | } BURN_CACHE_MESSAGE; | 77 | } BURN_CACHE_MESSAGE; |
73 | 78 | ||