Moved (Ext)FloodFill to fillshap.c and have it call NtGdi(Ext)FloodFill

svn path=/trunk/; revision=7540
This commit is contained in:
Richard Campbell 2004-01-10 02:10:27 +00:00
parent dc9be66534
commit 8d2d328ced

View file

@ -101,3 +101,30 @@ Pie(HDC hDc,
return NtGdiPie(hDc, Left, Top, Right, Bottom, XRadialStart, YRadialStart,
XRadialEnd, YRadialEnd);
}
BOOL STDCALL
ExtFloodFill(
HDC hdc, // handle to DC
int nXStart, // starting x-coordinate
int nYStart, // starting y-coordinate
COLORREF crColor, // fill color
UINT fuFillType // fill type
)
{
return NtGdiExtFloodFill( hdc, nXStart, nYStart, crColor, fuFillType );
}
/*
* @implemented
*/
BOOL STDCALL
FloodFill(
HDC hdc, // handle to DC
int nXStart, // starting x-coordinate
int nYStart, // starting y-coordinate
COLORREF crFill // fill color
)
{
return NtGdiFloodFill(hdc,nXStart, nYStart, crFill );
}