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

This commit is contained in:
Huw Davies 2006-01-27 19:22:56 +01:00 committed by Alexandre Julliard
parent 9aa555623a
commit e1e1f79288
7 changed files with 17 additions and 0 deletions

View file

@ -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 );

View file

@ -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 );

View file

@ -63,6 +63,7 @@ static HRESULT WINAPI xmlcf_QueryInterface(
return S_OK;
}
FIXME("interface %s not implemented\n", debugstr_guid(riid));
return E_NOINTERFACE;
}

View file

@ -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;
}

View file

@ -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 );

View file

@ -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 );

View file

@ -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 );