Removed some unnecessary FIXME outputs.

This commit is contained in:
Ulrich Weigand 1998-11-26 15:06:47 +00:00 committed by Alexandre Julliard
parent b9eab15d5c
commit e62cbca0fb
2 changed files with 6 additions and 5 deletions

View File

@ -1454,6 +1454,6 @@ void WINAPI CBClientThunkSL( CONTEXT *context )
void WINAPI KERNEL_365( CONTEXT *context )
{
LPWORD args = PTR_SEG_OFF_TO_LIN( SS_reg( context ), SP_reg( context ) );
FIXME( thunk, "(%04X, %d): stub!\n", args[3], (INT16)args[2] );
TRACE( thunk, "(%04X, %d): stub!\n", args[3], (INT16)args[2] );
}

View File

@ -1236,8 +1236,7 @@ HCOLORSPACE32 WINAPI GetColorSpace(HDC32 hdc)
*/
UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags)
{
FIXME(dc, "(): stub\n");
return DCB_RESET; /* bounding rectangle always empty */
return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/
}
/***********************************************************************
@ -1245,7 +1244,9 @@ UINT16 WINAPI GetBoundsRect16(HDC16 hdc, LPRECT16 rect, UINT16 flags)
*/
UINT16 WINAPI SetBoundsRect16(HDC16 hdc, const RECT16* rect, UINT16 flags)
{
FIXME(dc, "(): stub\n");
return DCB_DISABLE; /* bounding rectangle always empty */
if ( (flags & DCB_ACCUMULATE) || (flags & DCB_ENABLE) )
FIXME( dc, "(%04x, %p, %04x): stub\n", hdc, rect, flags );
return DCB_RESET | DCB_DISABLE; /* bounding rectangle always empty and disabled*/
}