Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: src/installer-ca/caSuffix.h

Issue 11521026: initial custom action library, "hello, world" quality (Closed)
Patch Set: Created Sept. 3, 2013, 12:48 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld