Commit b7aec2a2 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

msxml3: Make xmlnode_get_specified a stub.

parent 20fbdfc3
......@@ -934,8 +934,9 @@ static HRESULT WINAPI xmlnode_get_specified(
VARIANT_BOOL* isSpecified)
{
xmlnode *This = impl_from_IXMLDOMNode( iface );
FIXME("(%p)->(%p)\n", This, isSpecified);
return E_NOTIMPL;
FIXME("(%p)->(%p) stub!\n", This, isSpecified);
*isSpecified = VARIANT_TRUE;
return S_OK;
}
static HRESULT WINAPI xmlnode_get_definition(
......
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