MsiEnumComponentsA 函数 (msi.h)

MsiEnumComponents 函数枚举所有产品的已安装组件。 每次调用此函数时,此函数都会检索一个组件代码。

语法

UINT MsiEnumComponentsA(
  [in]  DWORD iComponentIndex,
  [out] LPSTR lpComponentBuf
);

参数

[in] iComponentIndex

指定要检索的组件的索引。 首次调用 MsiEnumComponents 函数时,此参数应为零,然后递增以进行后续调用。 由于组件未排序,因此任何新组件都有任意索引。 这意味着该函数可以按任何顺序返回组件。

[out] lpComponentBuf

指向接收组件代码的缓冲区的指针。 此缓冲区的长度必须为 39 个字符。 前 38 个字符用于 GUID,最后一个字符用于终止 null 字符。

返回值

含义
ERROR_BAD_CONFIGURATION
配置数据已损坏。
ERROR_INVALID_PARAMETER
向该函数传递了无效参数。
ERROR_NO_MORE_ITEMS
没有要返回的组件。
ERROR_NOT_ENOUGH_MEMORY
系统没有足够的内存来完成操作。 适用于 Windows Server 2003。
ERROR_SUCCESS
枚举了值。
 
 

注解

若要枚举组件,应用程序最初应调用将 iComponentIndex 参数设置为零的 MsiEnumComponents 函数。 然后,应用程序应递增 iComponentIndex 参数并调用 MsiEnumComponents ,直到没有更多的组件 (,直到函数返回ERROR_NO_MORE_ITEMS) 。

MsiEnumComponents 进行多次调用以枚举产品的所有组件时,应从同一线程进行每次调用。

注意

msi.h 标头将 MsiEnumComponents 定义为别名,该别名根据 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 运行时要求。
目标平台 Windows
标头 msi.h
Library Msi.lib
DLL Msi.dll

另请参阅

系统状态函数