widl: Added ATTR_BINDABLE handling to add_func_desc.

This commit is contained in:
Jacek Caban 2006-07-27 20:41:50 +02:00 committed by Alexandre Julliard
parent 4d76264f3e
commit b86bc2b634
1 changed files with 3 additions and 0 deletions

View File

@ -1340,6 +1340,9 @@ static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, func_t *func, int index)
case ATTR_RESTRICTED:
funcflags |= 0x1; /* FUNCFLAG_FRESTRICTED */
break;
case ATTR_BINDABLE:
funcflags |= 0x4; /* FUNCFLAG_BINDABLE */
break;
default:
warning("add_func_desc: ignoring attr %d\n", attr->type);
break;