aboutsummaryrefslogtreecommitdiff
path: root/src/burn/engine/container.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2022-08-03 14:55:23 -0500
committerSean Hall <r.sean.hall@gmail.com>2022-08-03 15:57:24 -0500
commit124fef398a26bc8e139e889a2345602d2478590c (patch)
tree002c77e0c1d72b0cc0e46bed3c6f02d4179625fe /src/burn/engine/container.h
parenta896fec453056aa5e1ad803b04a672d2dceda981 (diff)
downloadwix-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.h4
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
94typedef struct _BURN_CONTAINERS 96typedef struct _BURN_CONTAINERS