msxml3: Make xmlnode_get_specified a stub.

This commit is contained in:
André Hentschel 2010-03-30 19:56:44 +02:00 committed by Alexandre Julliard
parent 20fbdfc3c2
commit b7aec2a215
1 changed files with 3 additions and 2 deletions

View File

@ -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(