user32: Add RealChildWindowFromPoint.
This commit is contained in:
parent
c7e40aa972
commit
2ca1ddd8f0
|
@ -542,7 +542,7 @@
|
|||
@ stdcall PtInRect(ptr double)
|
||||
@ stub QuerySendMessage
|
||||
# @ stub QueryUserCounters
|
||||
@ stub RealChildWindowFromPoint
|
||||
@ stdcall RealChildWindowFromPoint(long double)
|
||||
@ stdcall RealGetWindowClass(long ptr long) RealGetWindowClassA
|
||||
@ stdcall RealGetWindowClassA(long ptr long)
|
||||
@ stdcall RealGetWindowClassW(long ptr long)
|
||||
|
|
|
@ -432,6 +432,14 @@ HWND WINAPI ChildWindowFromPoint( HWND hwndParent, POINT pt )
|
|||
return ChildWindowFromPointEx( hwndParent, pt, CWP_ALL );
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
* RealChildWindowFromPoint (USER32.@)
|
||||
*/
|
||||
HWND WINAPI RealChildWindowFromPoint( HWND hwndParent, POINT pt )
|
||||
{
|
||||
return ChildWindowFromPointEx( hwndParent, pt, CWP_SKIPTRANSPARENT );
|
||||
}
|
||||
|
||||
/*******************************************************************
|
||||
* ChildWindowFromPointEx (USER32.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue