OLD | NEW |
(Empty) | |
| 1 #pragma once |
| 2 //------------------------------------------------------------------------------
------------------- |
| 3 // <copyright file="caSuffix.h" company="Outercurve Foundation"> |
| 4 // Copyright (c) 2004, Outercurve Foundation. |
| 5 // This software is released under Microsoft Reciprocal License (MS-RL). |
| 6 // The license and further copyright text can be found in the file |
| 7 // LICENSE.TXT at the root directory of the distribution. |
| 8 // </copyright> |
| 9 // |
| 10 // <summary> |
| 11 // Platform specific suffix defines/utilities. |
| 12 // Must be kept in sync with caSuffix.wxi. |
| 13 // </summary> |
| 14 //------------------------------------------------------------------------------
------------------- |
| 15 |
| 16 #if defined _WIN64 // x64 and ia64 get this one |
| 17 #define PLATFORM_DECORATION(f) f ## L"_64" |
| 18 #elif defined ARM |
| 19 #define PLATFORM_DECORATION(f) f ## L"_ARM" |
| 20 #else |
| 21 #define PLATFORM_DECORATION(f) f |
| 22 #endif |
OLD | NEW |