NAME

META_EXTFLOODFILL

NEAREST API CALL

#include <windows.h>
BOOL32 ExtFloodFill
(
	HDC32 hdc,
	INT32 x,
	INT32 y,
	COLORREF color,
	UINT32 fillType
);

DESCRIPTION

U16 Value
0 fillType
1 COLORREF
2
3 y
4 x
The same as FloodFill, except that fillType is prepended, which can be one of FLOODFILLBORDER or FLOODFILLSURFACE. FLOODFILLBORDER makes ExtFloodFill function as FloodFill, FLOODFILLSURFACE converts the area of color that the point x,y is set to, to the new color.

back