From 8c43665c8db35df29f68f76251cb76f1b5aa1d2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9=20van=20Geldorp?= Date: Mon, 14 Mar 2005 22:56:02 +0000 Subject: [PATCH] Sync to Wine-20050310 svn path=/trunk/; revision=14082 --- reactos/include/wine/msidefs.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/reactos/include/wine/msidefs.h b/reactos/include/wine/msidefs.h index b2cf55cd818..45d4f20969b 100644 --- a/reactos/include/wine/msidefs.h +++ b/reactos/include/wine/msidefs.h @@ -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