Module: wine Branch: master Commit: a5b887a8c2fd7aacf5c913027a0bbe19d717d165 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a5b887a8c2fd7aacf5c913027a...
Author: Alexandre Julliard julliard@winehq.org Date: Wed Mar 5 19:20:43 2008 +0100
user32: Moved Cascade/TileChildWindows16 to wnd16.c.
---
dlls/user32/winpos.c | 17 ----------------- dlls/user32/wnd16.c | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 17 deletions(-)
diff --git a/dlls/user32/winpos.c b/dlls/user32/winpos.c index a2449d6..e9422be 100644 --- a/dlls/user32/winpos.c +++ b/dlls/user32/winpos.c @@ -2177,20 +2177,3 @@ BOOL WINAPI EndDeferWindowPos( HDWP hdwp ) USER_HEAP_FREE( hdwp ); return res; } - - -/*********************************************************************** - * TileChildWindows (USER.199) - */ -void WINAPI TileChildWindows16( HWND16 parent, WORD action ) -{ - FIXME("(%04x, %d): stub\n", parent, action); -} - -/*********************************************************************** - * CascadeChildWindows (USER.198) - */ -void WINAPI CascadeChildWindows16( HWND16 parent, WORD action ) -{ - FIXME("(%04x, %d): stub\n", parent, action); -} diff --git a/dlls/user32/wnd16.c b/dlls/user32/wnd16.c index 4090245..fd8ed60 100644 --- a/dlls/user32/wnd16.c +++ b/dlls/user32/wnd16.c @@ -965,6 +965,24 @@ HWND16 WINAPI ChildWindowFromPoint16( HWND16 hwndParent, POINT16 pt )
/*********************************************************************** + * CascadeChildWindows (USER.198) + */ +void WINAPI CascadeChildWindows16( HWND16 parent, WORD action ) +{ + CascadeWindows( WIN_Handle32(parent), action, NULL, 0, NULL ); +} + + +/*********************************************************************** + * TileChildWindows (USER.199) + */ +void WINAPI TileChildWindows16( HWND16 parent, WORD action ) +{ + TileWindows( WIN_Handle32(parent), action, NULL, 0, NULL ); +} + + +/*********************************************************************** * GetWindowTask (USER.224) */ HTASK16 WINAPI GetWindowTask16( HWND16 hwnd )