Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 103 of file dispex.c.
Referenced by alloc_protref(), ensure_prop_name(), and find_prop_name().
{ dispex_prop_t *ret; if(This->buf_size == This->prop_cnt) { dispex_prop_t *tmp = heap_realloc(This->props, (This->buf_size<<=1)*sizeof(*This->props)); if(!tmp) return NULL; This->props = tmp; } ret = This->props + This->prop_cnt++; ret->type = type; ret->flags = flags; ret->name = heap_strdupW(name); if(!ret->name) return NULL; return ret; }