diff --git a/tools/widl/typelib.c b/tools/widl/typelib.c index a3eee2c5a0d..fe32c8fe017 100644 --- a/tools/widl/typelib.c +++ b/tools/widl/typelib.c @@ -268,6 +268,7 @@ void add_typedef(type_t *tdef, var_t *name) typelib_entry_t *entry; if (!typelib) return; + chat("add typedef: %s\n", name->name); entry = xmalloc(sizeof(*entry)); entry->kind = TKIND_ALIAS; entry->u.tdef = xmalloc(sizeof(*entry->u.tdef)); diff --git a/tools/widl/write_msft.c b/tools/widl/write_msft.c index 03051609ba7..ea48a9a80c2 100644 --- a/tools/widl/write_msft.c +++ b/tools/widl/write_msft.c @@ -1730,6 +1730,9 @@ static msft_typeinfo_t *create_msft_typeinfo(msft_typelib_t *typelib, enum type_ typeinfo->flags |= 0x80; /* TYPEFLAG_FNONEXTENSIBLE */ break; + case ATTR_OBJECT: + break; + case ATTR_ODL: break;