mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Moved (Ext)FloodFill to fillshap.c and have it call NtGdi(Ext)FloodFill
svn path=/trunk/; revision=7540
This commit is contained in:
parent
dc9be66534
commit
8d2d328ced
1 changed files with 27 additions and 0 deletions
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue