Define msidbComponentAttributes.
[wine] / include / msidefs.h
1 /*
2  * Copyright (C) 2005 Mike McCormack
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #ifndef __WINE_MSIDEFS_H
20 #define __WINE_MSIDEFS_H
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 enum msidbDialogAttributes {
27     msidbDialogAttributesVisible = 0x00000001,
28     msidbDialogAttributesModal = 0x00000002,
29     msidbDialogAttributesMinimize = 0x00000004,
30     msidbDialogAttributesSysModal = 0x00000008,
31     msidbDialogAttributesKeepModeless = 0x00000010,
32     msidbDialogAttributesTrackDiskSpace = 0x00000020,
33     msidbDialogAttributesUseCustomPalette = 0x00000040,
34     msidbDialogAttributesRTLRO = 0x00000080,
35     msidbDialogAttributesRightAligned = 0x00000100,
36     msidbDialogAttributesLeftScroll = 0x00000200,
37     msidbDialogAttributesBidi = 0x00000380,
38     msidbDialogAttributesError = 0x00010000
39 };
40
41 enum msidbTextStyleStyleBits
42 {
43     msidbTextStyleStyleBitsBold = 0x00000001,
44     msidbTextStyleStyleBitsItalic = 0x00000002,
45     msidbTextStyleStyleBitsUnderline = 0x00000004,
46     msidbTextStyleStyleBitsStrike = 0x00000008,
47 };
48
49 enum msidbCustomActionType
50 {
51     msidbCustomActionTypeDll = 0x00000001,
52     msidbCustomActionTypeExe = 0x00000002,
53     msidbCustomActionTypeTextData = 0x00000003,
54     msidbCustomActionTypeJScript = 0x00000005,
55     msidbCustomActionTypeVBScript = 0x00000006,
56     msidbCustomActionTypeInstall = 0x00000007,
57
58     msidbCustomActionTypeBinaryData = 0x00000000,
59     msidbCustomActionTypeSourceFile = 0x00000010,
60     msidbCustomActionTypeDirectory = 0x00000020,
61     msidbCustomActionTypeProperty = 0x00000030,
62
63     msidbCustomActionTypeContinue = 0x00000040,
64     msidbCustomActionTypeAsync = 0x00000080,
65
66     msidbCustomActionTypeFirstSequence = 0x00000100,
67     msidbCustomActionTypeOncePerProcess = 0x00000200,
68     msidbCustomActionTypeClientRepeat = 0x00000300,
69     msidbCustomActionTypeInScript = 0x00000400,
70
71     msidbCustomActionTypeRollback = 0x00000100,
72     msidbCustomActionTypeCommit = 0x00000200,
73
74     msidbCustomActionTypeNoImpersonate = 0x00000800,
75     msidbCustomActionTypeTSAware = 0x00004000,
76
77     msidbCustomActionType64BitScript = 0x00001000,
78     msidbCustomActionTypeHideTarget = 0x00002000
79 };
80
81 enum msidbFeatureAttributes
82 {
83     msidbFeatureAttributesFavorLocal = 0x00000000,
84     msidbFeatureAttributesFavorSource = 0x00000001,
85     msidbFeatureAttributesFollowParent = 0x00000002,
86     msidbFeatureAttributesFavorAdvertise = 0x00000004,
87     msidbFeatureAttributesDisallowAdvertise = 0x00000008,
88     msidbFeatureAttributesUIDisallowAbsent = 0x00000010,
89     msidbFeatureAttributesNoUnsupportedAdvertise = 0x00000020
90 };
91
92 enum msidbComponentAttributes
93 {
94     msidbComponentAttributesLocalOnly = 0x00000000,
95     msidbComponentAttributesSourceOnly = 0x00000001,
96     msidbComponentAttributesOptional = 0x00000002,
97     msidbComponentAttributesRegistryKeyPath = 0x00000004,
98     msidbComponentAttributesSharedDllRefCount = 0x00000008,
99     msidbComponentAttributesPermanent = 0x00000010,
100     msidbComponentAttributesODBCDataSource = 0x00000020,
101     msidbComponentAttributesTransitive = 0x00000040,
102     msidbComponentAttributesNeverOverwrite = 0x00000080,
103     msidbComponentAttributes64bit = 0x00000100
104 };
105
106 #ifdef __cplusplus
107 }
108 #endif
109
110 #endif /* __WINE_MSIDEFS_H */