ChildWindowFromPoint method

Pointer<HWND__> ChildWindowFromPoint(
  1. Pointer<HWND__> hWndParent,
  2. POINT Point
)

Implementation

ffi.Pointer<HWND__> ChildWindowFromPoint(
  ffi.Pointer<HWND__> hWndParent,
  POINT Point,
) {
  return _ChildWindowFromPoint(
    hWndParent,
    Point,
  );
}