widl: add_interface_typeinfo should not return a value.
This commit is contained in:
parent
554a2ccb11
commit
ecfb6539f6
|
@ -2026,8 +2026,10 @@ static void add_interface_typeinfo(msft_typelib_t *typelib, type_t *interface)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_attr(interface->attrs, ATTR_DISPINTERFACE))
|
if (is_attr(interface->attrs, ATTR_DISPINTERFACE)) {
|
||||||
return add_dispinterface_typeinfo(typelib, interface);
|
add_dispinterface_typeinfo(typelib, interface);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* midl adds the parent interface first, unless the parent itself
|
/* midl adds the parent interface first, unless the parent itself
|
||||||
has no parent (i.e. it stops before IUnknown). */
|
has no parent (i.e. it stops before IUnknown). */
|
||||||
|
|
Loading…
Reference in New Issue