MSI: define msidbComponentAttributes

Mike McCormack mike at codeweavers.com
Wed Feb 23 23:07:01 CST 2005


ChangeLog:
Aric Stewart <aric at codeweavers.com>
* define msidbComponentAttributes
-------------- next part --------------
Index: include/msidefs.h
===================================================================
RCS file: /home/wine/wine/include/msidefs.h,v
retrieving revision 1.3
diff -u -p -r1.3 msidefs.h
--- include/msidefs.h	8 Feb 2005 12:56:00 -0000	1.3
+++ include/msidefs.h	24 Feb 2005 05:07:48 -0000
@@ -89,6 +89,20 @@ enum msidbFeatureAttributes
     msidbFeatureAttributesNoUnsupportedAdvertise = 0x00000020
 };
 
+enum msidbComponentAttributes
+{
+    msidbComponentAttributesLocalOnly = 0x00000000,
+    msidbComponentAttributesSourceOnly = 0x00000001,
+    msidbComponentAttributesOptional = 0x00000002,
+    msidbComponentAttributesRegistryKeyPath = 0x00000004,
+    msidbComponentAttributesSharedDllRefCount = 0x00000008,
+    msidbComponentAttributesPermanent = 0x00000010,
+    msidbComponentAttributesODBCDataSource = 0x00000020,
+    msidbComponentAttributesTransitive = 0x00000040,
+    msidbComponentAttributesNeverOverwrite = 0x00000080,
+    msidbComponentAttributes64bit = 0x00000100
+};
+
 #ifdef __cplusplus
 }
 #endif


More information about the wine-patches mailing list