ITypeInfo::GetRefOfImplType

Prototypes

HRESULT ITypeInfo::GetRefOfImplType(UINT Index, HREFTYPE *hRefType);

Description

Retrouve l'identifiant de l'interface implémentée de numéro Index.

Le résultat est rangé dans hRefType.

Exemple

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

ITypeInfo *pITypeInfo;
UINT Index;
HREFTYPE hRefType;
ITypeInfo *pITypeInfo2;

...
hRefType=NULL;
if (pIClassFactory->GetRefTypeOfImplType(Index, &hRefType)!=S_OK)
...
pITypeInfo2=NULL;
if ((pIClassFactory->GetRefTypeInfo(hRefType, &pITypeInfo2)!=S_OK)||!pITypeInfo2)
...

Avertissement

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

Voir aussi

ITypeInfo::GetRefTypeInfo pour retrouver la description d'une interface implémentée.