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/payload.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/payload.h')
-rw-r--r-- | src/burn/engine/payload.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/burn/engine/payload.h b/src/burn/engine/payload.h index 14738506..351fd058 100644 --- a/src/burn/engine/payload.h +++ b/src/burn/engine/payload.h | |||
@@ -60,6 +60,9 @@ typedef struct _BURN_PAYLOAD | |||
60 | 60 | ||
61 | LPWSTR sczUnverifiedPath; | 61 | LPWSTR sczUnverifiedPath; |
62 | DWORD cRemainingInstances; | 62 | DWORD cRemainingInstances; |
63 | |||
64 | BOOL fFailedVerificationFromAcquisition; | ||
65 | LPWSTR sczFailedLocalAcquisitionPath; | ||
63 | } BURN_PAYLOAD; | 66 | } BURN_PAYLOAD; |
64 | 67 | ||
65 | typedef struct _BURN_PAYLOADS | 68 | typedef struct _BURN_PAYLOADS |