Displaying 1 result from an estimated 1 matches for "ppelcol".
Did you mean:
ppelcoll
2010 Jul 31
2
getElementsByName
static HRESULT WINAPI HTMLDocument3_getElementsByName(IHTMLDocument3 *iface, BSTR v,
IHTMLElementCollection **ppelColl)
{
HTMLDocument *This = HTMLDOC3_THIS(iface);
FIXME("(%p)->(%s %p)\n", This, debugstr_w(v), ppelColl);
return E_NOTIMPL;
}
I'm trying to use an application that has an embedded IE browser component and unfortunately the html that's rendered in there makes heavy us...