aboutsummaryrefslogtreecommitdiff
path: root/src/ext/caDecor.h
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2026-08-01 22:55:27 -0400
committerBob Arnson <bob@firegiant.com>2026-08-09 22:55:24 -0400
commit7db9a9436d8734d050582afdb3a2dfda21c606e1 (patch)
tree651332dc9e84faee4c026883215f83d78dac63da /src/ext/caDecor.h
parentccfda4f4a158b19f61b018b944eb86272f427f55 (diff)
downloadwix-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.h10
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