From: Huw Davies Date: Mon, 10 Jan 2005 13:21:54 +0000 (+0000) Subject: Add support for hidden, restricted and version attributes on X-Git-Tag: wine-20050111~43 X-Git-Url: http://git.etersoft.ru/projects/?a=commitdiff_plain;h=862e922c933a8360944a133322daba1f0fe897bc;p=wine%2Feterwine.git Add support for hidden, restricted and version attributes on typeinfos. --- diff --git a/tools/widl/write_msft.c b/tools/widl/write_msft.c index 794dd1974c..aff851f696 100644 --- a/tools/widl/write_msft.c +++ b/tools/widl/write_msft.c @@ -1291,7 +1291,16 @@ static msft_typeinfo_t *create_msft_typeinfo(msft_typelib_t *typelib, typelib_en for( ; attr; attr = NEXT_LINK(attr)) { - if(attr->type == ATTR_UUID) { + switch(attr->type) { + case ATTR_HIDDEN: + typeinfo->flags |= 0x10; /* TYPEFLAG_FHIDDEN */ + break; + + case ATTR_RESTRICTED: + typeinfo->flags |= 0x200; /* TYPEFLAG_FRESTRICTED */ + break; + + case ATTR_UUID: guidentry.guid = *(GUID*)attr->u.pval; guidentry.hreftype = typelib->typelib_typeinfo_offsets[typeinfo->typekind >> 16]; guidentry.next_hash = -1; @@ -1301,6 +1310,14 @@ static msft_typeinfo_t *create_msft_typeinfo(msft_typelib_t *typelib, typelib_en typelib->typelib_header.dispatchpos = typelib->typelib_typeinfo_offsets[typeinfo->typekind >> 16]; } #endif + + case ATTR_VERSION: + typeinfo->version = attr->u.ival; + break; + + default: + warning("create_msft_typeinfo: ignoring attr %d\n", attr->type); + break; } }