aboutsummaryrefslogtreecommitdiff
path: root/src/ca/caDecor.h
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2020-07-04 18:36:13 -0400
committerBob Arnson <bob@firegiant.com>2020-07-04 18:58:45 -0400
commite6510bc49ebe47d37790a1930587f6405249def7 (patch)
tree30bdff91ad25db96e085b577a632306b8f703fbb /src/ca/caDecor.h
parent8181317ba1b9f718b6e54ce13cba04351e464c01 (diff)
downloadwix-e6510bc49ebe47d37790a1930587f6405249def7.tar.gz
wix-e6510bc49ebe47d37790a1930587f6405249def7.tar.bz2
wix-e6510bc49ebe47d37790a1930587f6405249def7.zip
Fix deferred custom action invocations.
Diffstat (limited to 'src/ca/caDecor.h')
-rw-r--r--src/ca/caDecor.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ca/caDecor.h b/src/ca/caDecor.h
new file mode 100644
index 00000000..da274650
--- /dev/null
+++ b/src/ca/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