| 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 BOOTSTRAPPER_EXTENSION_DECORATION(f) L"Wix4" f L"_A64" |
| 7 | #elif defined(_M_AMD64) |
| 8 | #define BOOTSTRAPPER_EXTENSION_DECORATION(f) L"Wix4" f L"_X64" |
| 9 | #elif defined(_M_ARM) |
| 10 | #define BOOTSTRAPPER_EXTENSION_DECORATION(f) L"Wix4" f L"_ARM" |
| 11 | #else |
| 12 | #define BOOTSTRAPPER_EXTENSION_DECORATION(f) L"Wix4" f L"_X86" |
| 13 | #endif |