mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
- Implement RealChildWindowFromPoint (based on wine)
- Add checking params for BeginDeferWindowPos svn path=/trunk/; revision=36350
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user