oleaut32: Improve ICreateTypeInfo2 AddImplType implementation.

This commit is contained in:
Piotr Caban 2010-03-17 22:05:53 +01:00 committed by Alexandre Julliard
parent d2319ae841
commit 15956152e5
1 changed files with 7 additions and 2 deletions

View File

@ -1853,6 +1853,7 @@ static HRESULT WINAPI ICreateTypeInfo2_fnAddImplType(
ref->flags = 0;
ref->oCustData = -1;
ref->onext = -1;
This->typeinfo->cImplTypes++;
} else if (This->typekind == TKIND_INTERFACE) {
if (This->typeinfo->cImplTypes && index==1)
return TYPE_E_BADMODULEKIND;
@ -1860,14 +1861,18 @@ static HRESULT WINAPI ICreateTypeInfo2_fnAddImplType(
if( index != 0) return TYPE_E_ELEMENTNOTFOUND;
This->typeinfo->datatype1 = hRefType;
This->typeinfo->cImplTypes = 1;
} else if (This->typekind == TKIND_DISPATCH) {
FIXME("dispatch case unhandled.\n");
if(index != 0) return TYPE_E_ELEMENTNOTFOUND;
/* FIXME: Check if referenced typeinfo is IDispatch */
This->typeinfo->flags |= TYPEFLAG_FDISPATCHABLE;
This->typeinfo->cImplTypes = 1;
} else {
FIXME("AddImplType unsupported on typekind %d\n", This->typekind);
return E_OUTOFMEMORY;
}
This->typeinfo->cImplTypes++;
return S_OK;
}