1
0
mirror of https://github.com/FunkyFr3sh/cnc-ddraw.git synced 2025-03-24 17:49:52 +01:00

tweak stubs

This commit is contained in:
FunkyFr3sh 2021-06-06 01:36:51 +02:00
parent 909b819be6
commit eb68ffcb1d
2 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,7 @@ HRESULT __stdcall IDirectDraw__GetDisplayMode(IDirectDrawImpl* This, LPDDSURFACE
HRESULT __stdcall IDirectDraw__GetFourCCCodes(IDirectDrawImpl* This, LPDWORD a, LPDWORD b) HRESULT __stdcall IDirectDraw__GetFourCCCodes(IDirectDrawImpl* This, LPDWORD a, LPDWORD b)
{ {
dprintf("NOT_IMPLEMENTED -> %s(This=%p)\n", __FUNCTION__, This); dprintf("NOT_IMPLEMENTED -> %s(This=%p)\n", __FUNCTION__, This);
HRESULT ret = DD_OK; HRESULT ret = DDERR_INVALIDOBJECT;
dprintf("NOT_IMPLEMENTED <- %s\n", __FUNCTION__); dprintf("NOT_IMPLEMENTED <- %s\n", __FUNCTION__);
return ret; return ret;
} }

View File

@ -200,9 +200,9 @@ HRESULT __stdcall IDirectDrawSurface__GetAttachedSurface(IDirectDrawSurfaceImpl
HRESULT __stdcall IDirectDrawSurface__GetBltStatus(IDirectDrawSurfaceImpl *This, DWORD a) HRESULT __stdcall IDirectDrawSurface__GetBltStatus(IDirectDrawSurfaceImpl *This, DWORD a)
{ {
dprintfex("NOT_IMPLEMENTED -> %s(This=%p)\n", __FUNCTION__, This); dprintfex("-> %s(This=%p)\n", __FUNCTION__, This);
HRESULT ret = DD_OK; HRESULT ret = DD_OK;
dprintfex("NOT_IMPLEMENTED <- %s\n", __FUNCTION__); dprintfex("<- %s\n", __FUNCTION__);
return ret; return ret;
} }