d3d8: Don't return a pointer to the implementation in IDirect3DDevice8Impl_QueryInterface().
This commit is contained in:
parent
ffcfdff2de
commit
925a791dff
|
@ -262,19 +262,19 @@ static inline IDirect3DDevice8Impl *impl_from_IDirect3DDevice8(IDirect3DDevice8
|
||||||
static HRESULT WINAPI IDirect3DDevice8Impl_QueryInterface(IDirect3DDevice8 *iface, REFIID riid,
|
static HRESULT WINAPI IDirect3DDevice8Impl_QueryInterface(IDirect3DDevice8 *iface, REFIID riid,
|
||||||
void **ppobj)
|
void **ppobj)
|
||||||
{
|
{
|
||||||
IDirect3DDevice8Impl *This = impl_from_IDirect3DDevice8(iface);
|
|
||||||
|
|
||||||
TRACE("iface %p, riid %s, object %p.\n",
|
TRACE("iface %p, riid %s, object %p.\n",
|
||||||
iface, debugstr_guid(riid), ppobj);
|
iface, debugstr_guid(riid), ppobj);
|
||||||
|
|
||||||
if (IsEqualGUID(riid, &IID_IUnknown)
|
if (IsEqualGUID(riid, &IID_IDirect3DDevice8)
|
||||||
|| IsEqualGUID(riid, &IID_IDirect3DDevice8)) {
|
|| IsEqualGUID(riid, &IID_IUnknown))
|
||||||
|
{
|
||||||
IUnknown_AddRef(iface);
|
IUnknown_AddRef(iface);
|
||||||
*ppobj = This;
|
*ppobj = iface;
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
|
WARN("%s not implemented, returning E_NOINTERFACE.\n", debugstr_guid(riid));
|
||||||
|
|
||||||
*ppobj = NULL;
|
*ppobj = NULL;
|
||||||
return E_NOINTERFACE;
|
return E_NOINTERFACE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue