dmstyle: Implement IClassFactory::QueryInterface.

oldstable
Michael Stefaniuc 2011-07-27 14:07:03 +02:00 committed by Alexandre Julliard
parent 1afbbb749a
commit ae43b099f9
1 changed files with 13 additions and 3 deletions

View File

@ -47,12 +47,22 @@ static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
static HRESULT WINAPI ClassFactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppv)
{
FIXME("- no interface IID: %s\n", debugstr_guid(riid));
if (ppv == NULL)
return E_POINTER;
return E_NOINTERFACE;
if (IsEqualGUID(&IID_IUnknown, riid))
TRACE("(%p)->(IID_IUnknown %p)\n", iface, ppv);
else if (IsEqualGUID(&IID_IClassFactory, riid))
TRACE("(%p)->(IID_IClassFactory %p)\n", iface, ppv);
else {
FIXME("(%p)->(%s %p)\n", iface, debugstr_guid(riid), ppv);
*ppv = NULL;
return E_NOINTERFACE;
}
*ppv = iface;
IUnknown_AddRef((IUnknown*)*ppv);
return S_OK;
}
static ULONG WINAPI ClassFactory_AddRef(IClassFactory *iface)