Skip to content

Commit

Permalink
improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Nov 23, 2024
1 parent ead0f23 commit b435223
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/IDirect3D/IDirect3D.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ HRESULT __stdcall IDirect3D__QueryInterface(IDirect3DImpl* This, REFIID riid, vo

HRESULT ret = E_FAIL;

if (riid)
{
TRACE("NOT_IMPLEMENTED GUID = %08X\n", ((GUID*)riid)->Data1);
}

TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret;
}
Expand Down
5 changes: 5 additions & 0 deletions src/IDirect3D/IDirect3D2.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ HRESULT __stdcall IDirect3D2__QueryInterface(IDirect3D2Impl* This, REFIID riid,

HRESULT ret = E_FAIL;

if (riid)
{
TRACE("NOT_IMPLEMENTED GUID = %08X\n", ((GUID*)riid)->Data1);
}

TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret;
}
Expand Down
5 changes: 5 additions & 0 deletions src/IDirect3D/IDirect3D3.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ HRESULT __stdcall IDirect3D3__QueryInterface(IDirect3D3Impl* This, REFIID riid,

HRESULT ret = E_FAIL;

if (riid)
{
TRACE("NOT_IMPLEMENTED GUID = %08X\n", ((GUID*)riid)->Data1);
}

TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret;
}
Expand Down
5 changes: 5 additions & 0 deletions src/IDirect3D/IDirect3D7.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ HRESULT __stdcall IDirect3D7__QueryInterface(IDirect3D7Impl* This, REFIID riid,

HRESULT ret = E_FAIL;

if (riid)
{
TRACE("NOT_IMPLEMENTED GUID = %08X\n", ((GUID*)riid)->Data1);
}

TRACE("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret;
}
Expand Down

0 comments on commit b435223

Please sign in to comment.