HRESULT ITypeInfo::GetRefOfImplType(UINT Index, HREFTYPE *hRefType);
Le résultat est rangé dans hRefType.
#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)
{
...
}
...