PtInRegion function gdi32

int PtInRegion(
  1. int hrgn,
  2. int x,
  3. int y
)

The PtInRegion function determines whether the specified point is inside the specified region.

BOOL PtInRegion(
  HRGN hrgn,
  int  x,
  int  y
);

Implementation

int PtInRegion(int hrgn, int x, int y) => _PtInRegion(hrgn, x, y);