Update to implement WindowFromPoint by delegating to NtUserWindowFromPoint:

svn path=/trunk/; revision=6472
This commit is contained in:
Mark Tempel 2003-10-30 21:58:42 +00:00
parent c8f5c0a9bd
commit 555931d0f4

View file

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.76 2003/10/28 22:46:30 navaraf Exp $ /* $Id: window.c,v 1.77 2003/10/30 21:58:42 mtempel Exp $
* *
* COPYRIGHT: See COPYING in the top level directory * COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS user32.dll * PROJECT: ReactOS user32.dll
@ -339,6 +339,7 @@ HWND STDCALL
ChildWindowFromPoint(HWND hWndParent, ChildWindowFromPoint(HWND hWndParent,
POINT Point) POINT Point)
{ {
DbgPrint("FIXME: ChildWindowFromPoint is not implemented\n");
UNIMPLEMENTED; UNIMPLEMENTED;
return (HWND)0; return (HWND)0;
} }
@ -352,6 +353,7 @@ ChildWindowFromPointEx(HWND hwndParent,
POINT pt, POINT pt,
UINT uFlags) UINT uFlags)
{ {
DbgPrint("FIXME: ChildWindowFromPointEx is not implemented\n");
UNIMPLEMENTED; UNIMPLEMENTED;
return (HWND)0; return (HWND)0;
} }
@ -1507,13 +1509,14 @@ UpdateLayeredWindow(HWND hwnd,
/* /*
* @unimplemented * @implemented
*/ */
HWND STDCALL HWND STDCALL
WindowFromPoint(POINT Point) WindowFromPoint(POINT Point)
{ {
UNIMPLEMENTED; //TODO: Determine what the actual parameters to
return (HWND)0; // NtUserWindowFromPoint are.
return NtUserWindowFromPoint(Point.x, Point.y);
} }