- Implement RealChildWindowFromPoint (based on wine)

- Add checking params for BeginDeferWindowPos

svn path=/trunk/; revision=36350
This commit is contained in:
Dmitry Chapyshev 2008-09-20 13:47:33 +00:00
parent 27149c2a0c
commit 608c551fa0

View file

@ -66,6 +66,11 @@ AllowSetForegroundWindow(DWORD dwProcessId)
HDWP STDCALL
BeginDeferWindowPos(int nNumWindows)
{
if (nNumWindows < 0)
{
SetLastError(ERROR_INVALID_PARAMETER);
return 0;
}
#if 0
UNIMPLEMENTED;
return (HDWP)0;
@ -1561,14 +1566,13 @@ OpenIcon(HWND hWnd)
/*
* @unimplemented
* @implemented
*/
HWND STDCALL
RealChildWindowFromPoint(HWND hwndParent,
POINT ptParentClientCoords)
{
UNIMPLEMENTED;
return (HWND)0;
return ChildWindowFromPointEx(hwndParent, ptParentClientCoords, CWP_SKIPTRANSPARENT);
}
/*