Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
b383690f
Commit
b383690f
authored
Mar 05, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Added stubs for Cascade/TileChildWindows.
parent
a5b887a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
2 deletions
+21
-2
mdi.c
dlls/user32/mdi.c
+19
-0
user32.spec
dlls/user32/user32.spec
+2
-2
No files found.
dlls/user32/mdi.c
View file @
b383690f
...
...
@@ -1888,6 +1888,15 @@ CascadeWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
}
/***********************************************************************
* CascadeChildWindows (USER32.@)
*/
WORD
WINAPI
CascadeChildWindows
(
HWND
parent
,
UINT
flags
)
{
return
CascadeWindows
(
parent
,
flags
,
NULL
,
0
,
NULL
);
}
/******************************************************************************
* TileWindows (USER32.@) Tiles MDI child windows
*
...
...
@@ -1903,6 +1912,16 @@ TileWindows (HWND hwndParent, UINT wFlags, const RECT *lpRect,
return
0
;
}
/***********************************************************************
* TileChildWindows (USER32.@)
*/
WORD
WINAPI
TileChildWindows
(
HWND
parent
,
UINT
flags
)
{
return
TileWindows
(
parent
,
flags
,
NULL
,
0
,
NULL
);
}
/************************************************************************
* "More Windows..." functionality
*/
...
...
dlls/user32/user32.spec
View file @
b383690f
...
...
@@ -28,7 +28,7 @@
@ stdcall CallNextHookEx(long long long long)
@ stdcall CallWindowProcA(ptr long long long long)
@ stdcall CallWindowProcW(ptr long long long long)
@ st
ub CascadeChildWindows
@ st
dcall CascadeChildWindows(long long)
@ stdcall CascadeWindows(long long ptr long ptr)
@ stdcall ChangeClipboardChain(long long)
@ stdcall ChangeDisplaySettingsA(ptr long)
...
...
@@ -698,7 +698,7 @@
@ stdcall SystemParametersInfoW(long long ptr long)
@ stdcall TabbedTextOutA(long long long str long long ptr long)
@ stdcall TabbedTextOutW(long long long wstr long long ptr long)
@ st
ub TileChildWindows
@ st
dcall TileChildWindows(long long)
@ stdcall TileWindows(long long ptr long ptr)
@ stdcall ToAscii(long long ptr ptr long)
@ stdcall ToAsciiEx(long long ptr ptr long long)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment