msxml: Issue a fixme if the interface is not implemented.
This commit is contained in:
parent
9aa555623a
commit
e1e1f79288
|
@ -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 );
|
||||
|
||||
|
|
Loading…
Reference in New Issue