SetRectRgn method

int SetRectRgn(
  1. Pointer<HRGN__> hrgn,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
)

Implementation

int SetRectRgn(
  ffi.Pointer<HRGN__> hrgn,
  int left,
  int top,
  int right,
  int bottom,
) {
  return _SetRectRgn(
    hrgn,
    left,
    top,
    right,
    bottom,
  );
}