Commit b86bc2b6 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

widl: Added ATTR_BINDABLE handling to add_func_desc.

parent 4d76264f
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment