https://bugs.winehq.org/show_bug.cgi?id=45968
Bug ID: 45968 Summary: Multiple applications need 'user32.CascadeWindows' implementation Product: Wine Version: 3.17 Hardware: x86-64 OS: Linux Status: NEW Severity: normal Priority: P2 Component: user32 Assignee: wine-bugs@winehq.org Reporter: focht@gmx.net Distribution: ---
Hello folks,
to track https://www.winehq.org/pipermail/wine-devel/2018-October/133379.html
Reactos ticket: https://jira.reactos.org/browse/CORE-14807 PR: https://github.com/reactos/reactos/pull/676
Microsoft docs:
https://docs.microsoft.com/en-us/windows/desktop/api/winuser/nf-winuser-casc...
Wine source: https://source.winehq.org/git/wine.git/blob/HEAD:/dlls/user32/mdi.c#l1842
--- snip --- 1842 /****************************************************************************** 1843 * CascadeWindows (USER32.@) Cascades MDI child windows 1844 * 1845 * RETURNS 1846 * Success: Number of cascaded windows. 1847 * Failure: 0 1848 */ 1849 WORD WINAPI 1850 CascadeWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect, 1851 UINT cKids, const HWND *lpKids) 1852 { 1853 FIXME("(%p,0x%08x,...,%u,...): stub\n", hwndParent, wFlags, cKids); 1854 return 0; 1855 } --- snip ---
Regards