IntersectClipRect method

int IntersectClipRect(
  1. Pointer<HDC__> hdc,
  2. int left,
  3. int top,
  4. int right,
  5. int bottom,
)

Implementation

int IntersectClipRect(
  ffi.Pointer<HDC__> hdc,
  int left,
  int top,
  int right,
  int bottom,
) {
  return _IntersectClipRect(
    hdc,
    left,
    top,
    right,
    bottom,
  );
}