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/container.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/container.h')
-rw-r--r-- | src/burn/engine/container.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/burn/engine/container.h b/src/burn/engine/container.h index f35f1da5..a38afa90 100644 --- a/src/burn/engine/container.h +++ b/src/burn/engine/container.h | |||
@@ -88,7 +88,9 @@ typedef struct _BURN_CONTAINER | |||
88 | DWORD64 qwExtractSizeTotal; | 88 | DWORD64 qwExtractSizeTotal; |
89 | DWORD64 qwCommittedCacheProgress; | 89 | DWORD64 qwCommittedCacheProgress; |
90 | DWORD64 qwCommittedExtractProgress; | 90 | DWORD64 qwCommittedExtractProgress; |
91 | HRESULT hrExtract; | 91 | BOOL fExtracted; |
92 | BOOL fFailedVerificationFromAcquisition; | ||
93 | LPWSTR sczFailedLocalAcquisitionPath; | ||
92 | } BURN_CONTAINER; | 94 | } BURN_CONTAINER; |
93 | 95 | ||
94 | typedef struct _BURN_CONTAINERS | 96 | typedef struct _BURN_CONTAINERS |