CreateRectRgn method

Pointer<HRGN__> CreateRectRgn(
  1. int x1,
  2. int y1,
  3. int x2,
  4. int y2,
)

Implementation

ffi.Pointer<HRGN__> CreateRectRgn(
  int x1,
  int y1,
  int x2,
  int y2,
) {
  return _CreateRectRgn(
    x1,
    y1,
    x2,
    y2,
  );
}