ChildWindowFromPointEx method

Pointer<HWND__> ChildWindowFromPointEx(
  1. Pointer<HWND__> hwnd,
  2. POINT pt,
  3. int flags
)

Implementation

ffi.Pointer<HWND__> ChildWindowFromPointEx(
  ffi.Pointer<HWND__> hwnd,
  POINT pt,
  int flags,
) {
  return _ChildWindowFromPointEx(
    hwnd,
    pt,
    flags,
  );
}