mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
widl: Ignore [object] attribute on interfaces written to a typelib.
This commit is contained in:
parent
b5d677a5b2
commit
7ca82cd6d2
2 changed files with 4 additions and 0 deletions
|
@ -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));
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue