diff options
| author | Bob Arnson <bob@firegiant.com> | 2026-08-01 22:55:27 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2026-08-09 22:55:24 -0400 |
| commit | 7db9a9436d8734d050582afdb3a2dfda21c606e1 (patch) | |
| tree | 651332dc9e84faee4c026883215f83d78dac63da /src/ext/caDecor.h | |
| parent | ccfda4f4a158b19f61b018b944eb86272f427f55 (diff) | |
| download | wix-bob/CancelWhenDeferred.tar.gz wix-bob/CancelWhenDeferred.tar.bz2 wix-bob/CancelWhenDeferred.zip | |
Add CancelWhenDeferred, like FailWhenDeferred.bob/CancelWhenDeferred
Useful for integration testing packages.
Diffstat (limited to 'src/ext/caDecor.h')
| -rw-r--r-- | src/ext/caDecor.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ext/caDecor.h b/src/ext/caDecor.h index 4a09e075..9484d74c 100644 --- a/src/ext/caDecor.h +++ b/src/ext/caDecor.h | |||
| @@ -31,3 +31,13 @@ | |||
| 31 | #else | 31 | #else |
| 32 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X86" | 32 | #define CUSTOM_ACTION_DECORATION6(f) L"Wix6" f L"_X86" |
| 33 | #endif | 33 | #endif |
| 34 | |||
| 35 | #if defined(_M_ARM64) | ||
| 36 | #define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_A64" | ||
| 37 | #elif defined(_M_AMD64) | ||
| 38 | #define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_X64" | ||
| 39 | #elif defined(_M_ARM) | ||
| 40 | #define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_ARM" | ||
| 41 | #else | ||
| 42 | #define CUSTOM_ACTION_DECORATION8(f) L"Wix8" f L"_X86" | ||
| 43 | #endif | ||
