1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-15 06:04:49 +01:00

add GUID to logs

This commit is contained in:
FunkyFr3sh 2019-04-14 07:52:40 +02:00
parent 9aa457c8b8
commit 3cd635fb01
2 changed files with 2 additions and 2 deletions

View File

@ -1496,7 +1496,7 @@ HRESULT __stdcall ddraw_QueryInterface(IDirectDrawImpl *This, REFIID riid, void
if (riid && !IsEqualGUID(&IID_IDirectDraw, riid))
{
printf(" IID_IDirectDrawX\n");
printf(" GUID = %08X\n", ((GUID *)riid)->Data1);
ddraw_AddRef(This);
*obj = This;

View File

@ -36,7 +36,7 @@ HRESULT __stdcall ddraw_surface_QueryInterface(IDirectDrawSurfaceImpl *This, REF
if (riid && !IsEqualGUID(&IID_IDirectDrawSurface, riid))
{
printf(" IID_IDirectDrawSurfaceX\n");
printf(" GUID = %08X\n", ((GUID *)riid)->Data1);
IDirectDrawSurface_AddRef(This);
}