highlight unsupported functions (for easier DebugString real-time filtering)

This commit is contained in:
FunkyFr3sh 2018-10-26 07:24:38 +02:00
parent c54465ed9e
commit 70492f6412
4 changed files with 49 additions and 45 deletions

View file

@ -20,7 +20,7 @@
HRESULT __stdcall ddraw_clipper_QueryInterface(IDirectDrawClipperImpl *This, REFIID riid, void **obj)
{
printf("DirectDrawClipper::QueryInterface(This=%p, riid=%08X, obj=%p)\n", This, (unsigned int)riid, obj);
printf("DirectDrawClipper::QueryInterface(This=%p, riid=%08X, obj=%p) ???\n", This, (unsigned int)riid, obj);
return S_OK;
}
@ -50,37 +50,37 @@ ULONG __stdcall ddraw_clipper_Release(IDirectDrawClipperImpl *This)
HRESULT __stdcall ddraw_clipper_GetClipList(IDirectDrawClipperImpl *This, LPRECT a, LPRGNDATA b, LPDWORD c)
{
printf("IDirectDrawClipper::GetClipList(This=%p, ...)\n", This);
printf("IDirectDrawClipper::GetClipList(This=%p, ...) ???\n", This);
return DD_OK;
}
HRESULT __stdcall ddraw_clipper_GetHWnd(IDirectDrawClipperImpl *This, HWND FAR *a)
{
printf("IDirectDrawClipper::GetHWnd(This=%p, ...)\n", This);
printf("IDirectDrawClipper::GetHWnd(This=%p, ...) ???\n", This);
return DD_OK;
}
HRESULT __stdcall ddraw_clipper_Initialize(IDirectDrawClipperImpl *This, LPDIRECTDRAW a, DWORD b)
{
printf("IDirectDrawClipper::Initialize(This=%p, ...)\n", This);
printf("IDirectDrawClipper::Initialize(This=%p, ...) ???\n", This);
return DD_OK;
}
HRESULT __stdcall ddraw_clipper_IsClipListChanged(IDirectDrawClipperImpl *This, BOOL FAR *a)
{
printf("IDirectDrawClipper::IsClipListChanged(This=%p, ...)\n", This);
printf("IDirectDrawClipper::IsClipListChanged(This=%p, ...) ???\n", This);
return DD_OK;
}
HRESULT __stdcall ddraw_clipper_SetClipList(IDirectDrawClipperImpl *This, LPRGNDATA a, DWORD b)
{
printf("IDirectDrawClipper::SetClipList(This=%p, ...)\n", This);
printf("IDirectDrawClipper::SetClipList(This=%p, ...) ???\n", This);
return DD_OK;
}
HRESULT __stdcall ddraw_clipper_SetHWnd(IDirectDrawClipperImpl *This, DWORD a, HWND b)
{
printf("IDirectDrawClipper::SetHWnd(This=%p, ...)\n", This);
printf("IDirectDrawClipper::SetHWnd(This=%p, ...) ???\n", This);
return DD_OK;
}