Commit 0491ad58 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

dxdiagn: Silence some fixmes from class factory QI.

parent 7da2416e
......@@ -67,6 +67,12 @@ static HRESULT WINAPI DXDiagCF_QueryInterface(IClassFactory *iface, REFIID riid,
TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
else if (IsEqualGUID(&IID_IClassFactory, riid))
TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
else if (IsEqualGUID(&IID_IExternalConnection, riid) ||
IsEqualGUID(&IID_IMarshal, riid)) {
TRACE("(%p)->(%s) ignoring\n", iface, debugstr_guid(riid));
*ppv = NULL;
return E_NOINTERFACE;
}
else {
FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
*ppv = NULL;
......
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