msisetFeatureAttributesA 函数 (msiquery.h)
MsiSetFeatureAttributes 函数可以在运行时修改功能的默认属性。 请注意,特征的默认属性是在功能 表的“属性”列中创作的。
语法
UINT MsiSetFeatureAttributesA(
[in] MSIHANDLE hInstall,
[in] LPCSTR szFeature,
[in] DWORD dwAttributes
);
参数
[in] hInstall
提供给 DLL 自定义操作或通过 MsiOpenPackage、MsiOpenPackageEx 或 MsiOpenProduct 获取的安装的句柄。
[in] szFeature
指定产品中的功能名称。
[in] dwAttributes
在运行时指定为一组位标志的功能特性:
返回的常量 | 含义 |
---|---|
|
在运行时将默认功能属性修改为 msidbFeatureAttributesFavorLocal。 有关说明,请参阅 功能表 的属性列。 |
|
在运行时将默认功能属性修改为 msidbFeatureAttributesFavorSource。 有关说明,请参阅 功能表 的属性列。 |
|
在运行时将默认功能属性修改为 msidbFeatureAttributesFollowParent。 请注意,这不是要为顶级功能设置的有效属性。 有关说明,请参阅 功能表 的属性列。 |
|
在运行时将默认功能属性修改为 msidbFeatureAttributesFavorAdvertise。 有关说明,请参阅 功能表 的属性列。 |
|
在运行时将默认功能属性修改为 msidbFeatureAttributesDisallowAdvertise。 有关说明,请参阅 功能表 的属性列。 |
|
在运行时将默认功能属性修改为 msidbFeatureAttributesNoUnsupportedAdvertise。 有关说明,请参阅 功能表 的属性列。 |
返回值
此函数返回 UINT。
注解
必须在 CostInitialize 操作之后和 CostFinalize 操作之前调用 MsiSetFeatureAttributes。 如果在任何其他时间调用,函数将返回ERROR_FUNCTION_FAILED。
INSTALLFEATUREATTRIBUTE_FAVORLOCAL、INSTALLFEATUREATTRIBUTE_FAVORSOURCE和INSTALLFEATUREATTRIBUTE_FOLLOWPARENT标志互斥。 对于任何功能,只能设置其中一个位。 如果设置了其中多个标志,则该功能的行为未定义。
请参阅 从程序调用数据库函数。
注意
msiquery.h 标头将 MsiSetFeatureAttributes 定义为别名,该别名根据 UNICODE 预处理器常量的定义自动选择此函数的 ANSI 或 Unicode 版本。 将非特定编码别名与非非特定编码的代码混合使用可能会导致不匹配,从而导致编译或运行时错误。 有关详细信息,请参阅 函数原型的约定。
要求
要求 | 值 |
---|---|
最低受支持的客户端 | Windows Server 2012、Windows 8、Windows Server 2008 R2 或 Windows 7 上的 Windows Installer 5.0。 Windows Server 2008 或 Windows Vista 上的 Windows Installer 4.0 或 Windows Installer 4.5。 Windows Server 2003 或 Windows XP 上的 Windows Installer |
目标平台 | Windows |
标头 | msiquery.h |
Library | Msi.lib |
DLL | Msi.dll |