Commit 2ca1ddd8 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

user32: Add RealChildWindowFromPoint.

parent c7e40aa9
...@@ -542,7 +542,7 @@ ...@@ -542,7 +542,7 @@
@ stdcall PtInRect(ptr double) @ stdcall PtInRect(ptr double)
@ stub QuerySendMessage @ stub QuerySendMessage
# @ stub QueryUserCounters # @ stub QueryUserCounters
@ stub RealChildWindowFromPoint @ stdcall RealChildWindowFromPoint(long double)
@ stdcall RealGetWindowClass(long ptr long) RealGetWindowClassA @ stdcall RealGetWindowClass(long ptr long) RealGetWindowClassA
@ stdcall RealGetWindowClassA(long ptr long) @ stdcall RealGetWindowClassA(long ptr long)
@ stdcall RealGetWindowClassW(long ptr long) @ stdcall RealGetWindowClassW(long ptr long)
......
...@@ -433,6 +433,14 @@ HWND WINAPI ChildWindowFromPoint( HWND hwndParent, POINT pt ) ...@@ -433,6 +433,14 @@ HWND WINAPI ChildWindowFromPoint( HWND hwndParent, POINT pt )
} }
/******************************************************************* /*******************************************************************
* RealChildWindowFromPoint (USER32.@)
*/
HWND WINAPI RealChildWindowFromPoint( HWND hwndParent, POINT pt )
{
return ChildWindowFromPointEx( hwndParent, pt, CWP_SKIPTRANSPARENT );
}
/*******************************************************************
* ChildWindowFromPointEx (USER32.@) * ChildWindowFromPointEx (USER32.@)
*/ */
HWND WINAPI ChildWindowFromPointEx( HWND hwndParent, POINT pt, UINT uFlags) HWND WINAPI ChildWindowFromPointEx( HWND hwndParent, POINT pt, UINT uFlags)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment