ITypeLib::GetTypeInfo

Prototypes

HRESULT ITypeLib::GetTypeInfo(UINT Index, ITypeInfo **pITypeInfo);

Description

Retrouve la description du type identifié par Index hébergé dans la bibliothèque.

Le résultat est rangé dans pITypeInfo.

Exemple

#include <windows.h>
#include <winbase.h>
#include <ole2.h>

ITypeLib *pITypeLib;
UNIT Index;
UNIT IndexMax;
ITypeInfo *pITypeInfo;

...
IndexMax=pITypeLib->GetTypeInfoCount();
for (Index=0;Index<IndexMax;Index++) ...

Avertissement

Le résultat est S_OK en cas de succès.

Voir aussi

ITypeLib::GetTypeInfoCount pour connaître le nombre de types hébergés par la bibliothèque.
ITypeLib::GetTypeInfoOfGuid pour retrouver la description d'un type à partir de son Guid.