MsiUseFeatureA 函数 (msi.h)

MsiUseFeature 函数递增特定功能的使用情况计数,并指示该功能的安装状态。 此函数应用于指示应用程序使用功能的意图。

语法

INSTALLSTATE MsiUseFeatureA(
  [in] LPCSTR szProduct,
  [in] LPCSTR szFeature
);

参数

[in] szProduct

指定拥有要使用的功能的产品的代码示例。

[in] szFeature

标识要使用的功能。

返回值

价值 意义
INSTALLSTATE_ABSENT
未安装该功能。
INSTALLSTATE_ADVERTISED
此功能已播发
INSTALLSTATE_BADCONFIG
配置数据已损坏。
INSTALLSTATE_INVALIDARG
无效的函数参数。
INSTALLSTATE_LOCAL
该功能在本地安装,可供使用。
INSTALLSTATE_SOURCE
该功能从源安装,可供使用。
INSTALLSTATE_UNKNOWN
此功能未发布。
 
 

言论

MsiUseFeature 函数只能用于已知发布的功能。 INSTALLSTATE_UNKNOWN指示程序尝试使用未发布的功能。 应用程序应通过 调用 MsiQueryFeatureStateMsiEnumFeatures,在调用 msiUseFeature 之前发布该功能。 应用程序应在初始化时进行这些调用。 应用程序应仅使用已知已发布的功能。

注意

msi.h 标头将 MsiUseFeature 定义为一个别名,该别名根据 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 Installer 版本所需的最低 Windows Service Pack 的信息,请参阅 Windows Installer Run-Time 要求。
目标平台 窗户
标头 msi.h
Msi.lib
DLL Msi.dll

另请参阅

Application-Only Functions