OLD | NEW |
(Empty) | |
| 1 #pragma once |
| 2 //------------------------------------------------------------------------------
------------------- |
| 3 // <copyright file="cost.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 // Costs for various custom actions in WiX CA. |
| 12 // </summary> |
| 13 //------------------------------------------------------------------------------
------------------- |
| 14 |
| 15 const UINT COST_SECUREOBJECT = 1000; |
| 16 const UINT COST_SERVICECONFIG = 1000; |
| 17 const UINT COST_XMLFILE = 1000; |
| 18 const UINT COST_CLOSEAPP = 500; |
| 19 const UINT COST_INTERNETSHORTCUT = 2000; |
OLD | NEW |