Skip to content

Commit

Permalink
improve logging
Browse files Browse the repository at this point in the history
  • Loading branch information
FunkyFr3sh committed Nov 26, 2024
1 parent e0c00d3 commit 7dc7028
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/IDirectDraw/IDirectDraw.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,18 @@ HRESULT __stdcall IDirectDraw__EnumSurfaces(
LPVOID lpContext,
LPDDENUMSURFACESCALLBACK7 lpEnumSurfacesCallback)
{
TRACE("NOT_IMPLEMENTED -> %s(This=%p) [%p]\n", __FUNCTION__, This, _ReturnAddress());
TRACE(
"NOT_IMPLEMENTED -> %s(This=%p, dwFlags=%08X, lpDDSurfaceDesc=%p, lpContext=%p, lpEnumSurfacesCallback=%p) [%p]\n",
__FUNCTION__,
This,
dwFlags,
lpDDSurfaceDesc,
lpContext,
lpEnumSurfacesCallback,
_ReturnAddress());

HRESULT ret = DD_OK;

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

0 comments on commit 7dc7028

Please sign in to comment.