ExtFloodFill method

int ExtFloodFill(
  1. Pointer<HDC__> hdc,
  2. int x,
  3. int y,
  4. int color,
  5. int type,
)

Implementation

int ExtFloodFill(
  ffi.Pointer<HDC__> hdc,
  int x,
  int y,
  int color,
  int type,
) {
  return _ExtFloodFill(
    hdc,
    x,
    y,
    color,
    type,
  );
}