The MsiEnumClients function enumerates the clients for a given installed component. The function retrieves one product code each time it is called.
Syntax
C++UINT MsiEnumClients(
__in LPCTSTR szComponent,
__in DWORD iProductIndex,
__out LPTSTR lpProductBuf
);
Parameters
- szComponent [in]
-
Specifies the component whose clients are to be enumerated.
- iProductIndex [in]
-
Specifies the index of the client to retrieve. This parameter should be zero for the first call to the MsiEnumClients function and then incremented for subsequent calls. Because clients are not ordered, any new client has an arbitrary index. This means that the function can return clients in any order.
- lpProductBuf [out]
-
Pointer to a buffer that receives the product code. This buffer must be 39 characters long. The first 38 characters are for the GUID, and the last character is for the terminating null character.
Return Value
Value | Meaning |
---|---|
|
The configuration data is corrupt. |
|
An invalid parameter was passed to the function. |
|
There are no clients to return. |
|
The system does not have enough memory to complete the operation. Available with Windows Server 2003. |
|
A value was enumerated. |
|
The specified component is unknown. |
Remarks
To enumerate clients, an application should initially call the MsiEnumClients function with the iProductIndex parameter set to zero. The application should then increment the iProductIndexparameter and call MsiEnumClients until there are no more clients (that is, until the function returns ERROR_NO_MORE_ITEMS).
When making multiple calls to MsiEnumClients to enumerate all of the component's clients, each call should be made from the same thread.
Requirements
Version | Windows Installer 5.0 on Windows Server 2008 R2 or Windows 7. Windows Installer 4.0 or Windows Installer 4.5 on Windows Server 2008 or Windows Vista. Windows Installer on Windows Server 2003, Windows XP, and Windows 2000. See the Windows Installer Run-Time Requirements for information about the minimum Windows service pack that is required by a Windows Installer version. |
---|---|
Header | Msi.h |
Library | Msi.lib |
DLL | Msi.dll |
Unicode and ANSI names | MsiEnumClientsW (Unicode) and MsiEnumClientsA (ANSI) |
See Also
Send comments about this topic to Microsoft
Build date: 8/13/2009
© 2009 Microsoft Corporation. All rights reserved.