ChildWindowFromPointEx function user32
Determines which, if any, of the child windows belonging to the specified parent window contains the specified point. The function can ignore invisible, disabled, and transparent child windows. Grandchildren and deeper descendants are not searched.
HWND ChildWindowFromPointEx(
HWND hwnd,
POINT pt,
UINT flags
);
Implementation
int ChildWindowFromPointEx(int hwnd, POINT pt, int flags) =>
_ChildWindowFromPointEx(hwnd, pt, flags);