devenum: Avoid newlines inside FIXME messages.
This commit is contained in:
parent
bedea431f9
commit
71d7331932
|
@ -76,7 +76,7 @@ static HRESULT WINAPI DEVENUM_ICreateDevEnum_QueryInterface(
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
|
|
@ -78,7 +78,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
|
|||
IsEqualGUID(rclsid, &CLSID_CDeviceMoniker))
|
||||
return IClassFactory_QueryInterface((IClassFactory*)&DEVENUM_ClassFactory, iid, ppv);
|
||||
|
||||
FIXME("\n\tCLSID:\t%s,\n\tIID:\t%s\n",debugstr_guid(rclsid),debugstr_guid(iid));
|
||||
FIXME("CLSID: %s, IID: %s\n", debugstr_guid(rclsid), debugstr_guid(iid));
|
||||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
}
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ static HRESULT WINAPI DEVENUM_IClassFactory_QueryInterface(
|
|||
return IClassFactory_CreateInstance(iface, NULL, riid, ppvObj);
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ static HRESULT WINAPI DEVENUM_IPropertyBag_QueryInterface(
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
@ -308,7 +308,7 @@ static HRESULT WINAPI DEVENUM_IMediaCatMoniker_QueryInterface(
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
@ -723,7 +723,7 @@ static HRESULT WINAPI DEVENUM_IEnumMoniker_QueryInterface(
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ static HRESULT WINAPI DEVENUM_IParseDisplayName_QueryInterface(
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
FIXME("- no interface\n\tIID:\t%s\n", debugstr_guid(riid));
|
||||
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue