Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 786 of file dispex.c.
Referenced by catch_eval(), create_object_prototype(), create_var_disp(), and init_global().
{ DispatchEx *ret; HRESULT hres; ret = heap_alloc_zero(sizeof(DispatchEx)); if(!ret) return E_OUTOFMEMORY; hres = init_dispex(ret, ctx, builtin_info ? builtin_info : &dispex_info, prototype); if(FAILED(hres)) return hres; *dispex = ret; return S_OK; }