move NtGdiExtFloodFill from bitblt.c to filshap.c

svn path=/trunk/; revision=28479
This commit is contained in:
Timo Kreuzer 2007-08-23 17:04:28 +00:00
parent c74dd37de0
commit e60a2c2441
2 changed files with 14 additions and 14 deletions

View file

@ -535,20 +535,6 @@ done:
return Ret;
}
BOOL STDCALL
NtGdiExtFloodFill(
HDC hDC,
INT XStart,
INT YStart,
COLORREF Color,
UINT FillType)
{
DPRINT1("FIXME: NtGdiExtFloodFill is UNIMPLEMENTED\n");
/* lie and say we succeded */
return TRUE;
}
/***********************************************************************
* MaskBlt
* Ported from WINE by sedwards 11-4-03

View file

@ -1659,4 +1659,18 @@ NtGdiGradientFill(
return Ret;
}
BOOL STDCALL
NtGdiExtFloodFill(
HDC hDC,
INT XStart,
INT YStart,
COLORREF Color,
UINT FillType)
{
DPRINT1("FIXME: NtGdiExtFloodFill is UNIMPLEMENTED\n");
/* lie and say we succeded */
return TRUE;
}
/* EOF */