aboutsummaryrefslogtreecommitdiff
path: root/src/ext/caDecor.h
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2021-09-19 22:29:32 -0400
committerBob Arnson <bob@firegiant.com>2021-09-19 22:58:34 -0400
commit3a4dffe9feb62ea383e767ba903ff1edc8234f0e (patch)
treec5a0d63cff6ee880db0ef93b622791c572a835aa /src/ext/caDecor.h
parentbefda7bad8a90f43d7f9ca419e91f79613e0effb (diff)
downloadwix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.tar.gz
wix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.tar.bz2
wix-3a4dffe9feb62ea383e767ba903ff1edc8234f0e.zip
Table ids per https://github.com/wixtoolset/issues/issues/5933.
Diffstat (limited to 'src/ext/caDecor.h')
-rw-r--r--src/ext/caDecor.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ext/caDecor.h b/src/ext/caDecor.h
new file mode 100644
index 00000000..da274650
--- /dev/null
+++ b/src/ext/caDecor.h
@@ -0,0 +1,13 @@
1#pragma once
2// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
3
4
5#if defined(_M_ARM64)
6#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_A64"
7#elif defined(_M_AMD64)
8#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_X64"
9#elif defined(_M_ARM)
10#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_ARM"
11#else
12#define CUSTOM_ACTION_DECORATION(f) L"Wix4" f L"_X86"
13#endif