WindowFromPhysicalPoint function user32

HWND WindowFromPhysicalPoint(
  1. POINT point
)

Retrieves a handle to the window that contains the specified physical point.

To learn more, see learn.microsoft.com/windows/win32/api/winuser/nf-winuser-windowfromphysicalpoint.

Implementation

@pragma('vm:prefer-inline')
HWND WindowFromPhysicalPoint(POINT point) =>
    HWND(_WindowFromPhysicalPoint(point));