Skip to content
Snippets Groups Projects
Commit c2c0a987 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard
Browse files

Define msidbComponentAttributes.

parent fa85f013
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment