user32: Add RealChildWindowFromPoint.

This commit is contained in:
Louis Lenders 2007-04-11 21:57:00 +01:00 committed by Alexandre Julliard
parent c7e40aa972
commit 2ca1ddd8f0
2 changed files with 9 additions and 1 deletions

View File

@ -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)

View File

@ -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.@)
*/