sync objsel to wine 1.1.40

svn path=/trunk/; revision=45978
This commit is contained in:
Christoph von Wittich 2010-03-07 09:29:02 +00:00
parent fbff905ed2
commit 314b9e10be
2 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ static HRESULT WINAPI OBJSEL_IClassFactory_QueryInterface(
return IClassFactory_CreateInstance(iface, NULL, riid, ppvObj); 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; return E_NOINTERFACE;
} }

View file

@ -55,7 +55,7 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID iid, LPVOID *ppv)
if (IsEqualGUID(rclsid, &CLSID_DsObjectPicker)) if (IsEqualGUID(rclsid, &CLSID_DsObjectPicker))
return IClassFactory_QueryInterface((IClassFactory*)&OBJSEL_ClassFactory, iid, ppv); return IClassFactory_QueryInterface((IClassFactory*)&OBJSEL_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; return CLASS_E_CLASSNOTAVAILABLE;
} }
@ -147,7 +147,7 @@ static HRESULT WINAPI OBJSEL_IDsObjectPicker_QueryInterface(
return S_OK; 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; return E_NOINTERFACE;
} }