aboutsummaryrefslogtreecommitdiff
path: root/src/ext/caDecor.h
diff options
context:
space:
mode:
authorchris_bednarski <Chris.Bednarski@minfos.com.au>2023-08-26 18:51:38 +1000
committerBob Arnson <github@bobs.org>2023-11-19 12:17:13 -0500
commit80e604761b4f43b9b79a4878fcae360b071a7c35 (patch)
tree9ca40a1d60a2ef1a5a1a426382356ae8b7cf9868 /src/ext/caDecor.h
parent6e974490eeabc9a3728aa2fb9ad07e8a5adf4fb6 (diff)
downloadwix-80e604761b4f43b9b79a4878fcae360b071a7c35.tar.gz
wix-80e604761b4f43b9b79a4878fcae360b071a7c35.tar.bz2
wix-80e604761b4f43b9b79a4878fcae360b071a7c35.zip
change firewall extension table name to Wix5FirewallException
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 da274650..060032cf 100644
--- a/src/ext/caDecor.h
+++ b/src/ext/caDecor.h
@@ -11,3 +11,13 @@
11#else 11#else
12#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_X86" 12#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_X86"
13#endif 13#endif
14
15#if defined(_M_ARM64)
16#define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_A64"
17#elif defined(_M_AMD64)
18#define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_X64"
19#elif defined(_M_ARM)
20#define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_ARM"
21#else
22#define CUSTOM_ACTION_DECORATION5(f) L"Wix5" f L"_X86"
23#endif