unstubbed childwindowfrompoint(ex). This function is implemented in my local source tree, will commit as soon as i do some testing to make sure things work as planned.

svn path=/trunk/; revision=7984
This commit is contained in:
Richard Campbell 2004-02-02 00:18:58 +00:00
parent 03726a14c8
commit 18ff29b0fa

View file

@ -1,4 +1,4 @@
/* $Id: window.c,v 1.96 2004/01/26 08:44:51 weiden Exp $ /* $Id: window.c,v 1.97 2004/02/02 00:18:58 rcampbell 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
@ -156,29 +156,25 @@ CascadeWindows(HWND hwndParent,
/* /*
* @unimplemented * @implemented
*/ */
HWND STDCALL HWND STDCALL
ChildWindowFromPoint(HWND hWndParent, ChildWindowFromPoint(HWND hWndParent,
POINT Point) POINT Point)
{ {
DbgPrint("FIXME: ChildWindowFromPoint is not implemented\n"); return NtUserChildWindowFromPointEx(hWndParent, Point.x, Point.y, 0);
UNIMPLEMENTED;
return (HWND)0;
} }
/* /*
* @unimplemented * @implemented
*/ */
HWND STDCALL HWND STDCALL
ChildWindowFromPointEx(HWND hwndParent, ChildWindowFromPointEx(HWND hwndParent,
POINT pt, POINT pt,
UINT uFlags) UINT uFlags)
{ {
DbgPrint("FIXME: ChildWindowFromPointEx is not implemented\n"); return NtUserChildWindowFromPointEx(hwndParent, pt.x, pt.y, uFlags);
UNIMPLEMENTED;
return (HWND)0;
} }