Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 513 of file htmlform.c.
{ HTMLFormElement *This = HTMLFORM_NODE_THIS(iface); IDispatch *ret; HRESULT hres; TRACE("(%p)->(%x %x %x %p %p %p %p)\n", This, id, lcid, flags, params, res, ei, caller); hres = htmlform_item(This, id - MSHTML_DISPID_CUSTOM_MIN, &ret); if(FAILED(hres)) return hres; if(ret) { V_VT(res) = VT_DISPATCH; V_DISPATCH(res) = ret; }else { V_VT(res) = VT_NULL; } return S_OK; }