Commit e1e1f792 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

msxml: Issue a fixme if the interface is not implemented.

parent 9aa55562
......@@ -95,7 +95,10 @@ static HRESULT WINAPI domdoc_QueryInterface( IXMLDOMDocument *iface, REFIID riid
return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IXMLDOMDocument_AddRef( iface );
......
......@@ -74,7 +74,10 @@ static HRESULT WINAPI domelem_QueryInterface(
return IUnknown_QueryInterface(This->node_unk, riid, ppvObject);
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IXMLDOMElement_AddRef( iface );
......
......@@ -63,6 +63,7 @@ static HRESULT WINAPI xmlcf_QueryInterface(
return S_OK;
}
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
......
......@@ -775,6 +775,7 @@ static HRESULT WINAPI Internal_QueryInterface(
*ppvObject = &This->lpVtbl;
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
*ppvObject = NULL;
return E_NOINTERFACE;
}
......
......@@ -167,7 +167,10 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
*ppvObject = iface;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IXMLDOMNodeList_AddRef( iface );
......
......@@ -64,7 +64,10 @@ static HRESULT WINAPI xmlnodemap_QueryInterface(
*ppvObject = iface;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IXMLDOMElement_AddRef( iface );
......
......@@ -63,7 +63,10 @@ static HRESULT WINAPI parseError_QueryInterface(
*ppvObject = iface;
}
else
{
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}
IXMLDOMParseError_AddRef( iface );
......
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