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
3ad92b0c
Commit
3ad92b0c
authored
Mar 06, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 06, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Replace const pointer parameters with correct pointers to const.
parent
3c842c0d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
mdi.c
dlls/user32/mdi.c
+2
-2
painting.c
dlls/user32/painting.c
+1
-1
winuser.h
include/winuser.h
+2
-2
No files found.
dlls/user32/mdi.c
View file @
3ad92b0c
...
...
@@ -1852,7 +1852,7 @@ void WINAPI ScrollChildren(HWND hWnd, UINT uMsg, WPARAM wParam,
* Failure: 0
*/
WORD
WINAPI
CascadeWindows
(
HWND
hwndParent
,
UINT
wFlags
,
const
LPRECT
lpRect
,
CascadeWindows
(
HWND
hwndParent
,
UINT
wFlags
,
const
RECT
*
lpRect
,
UINT
cKids
,
const
HWND
*
lpKids
)
{
FIXME
(
"(%p,0x%08x,...,%u,...): stub
\n
"
,
hwndParent
,
wFlags
,
cKids
);
...
...
@@ -1868,7 +1868,7 @@ CascadeWindows (HWND hwndParent, UINT wFlags, const LPRECT lpRect,
* Failure: 0
*/
WORD
WINAPI
TileWindows
(
HWND
hwndParent
,
UINT
wFlags
,
const
LPRECT
lpRect
,
TileWindows
(
HWND
hwndParent
,
UINT
wFlags
,
const
RECT
*
lpRect
,
UINT
cKids
,
const
HWND
*
lpKids
)
{
FIXME
(
"(%p,0x%08x,...,%u,...): stub
\n
"
,
hwndParent
,
wFlags
,
cKids
);
...
...
dlls/user32/painting.c
View file @
3ad92b0c
...
...
@@ -353,7 +353,7 @@ static void update_now( HWND hwnd, UINT rdw_flags )
* caret. Its caret needs to be hidden during the scroll operation and
* moved to new_caret_pos if move_caret is TRUE.
*/
static
HWND
fix_caret
(
HWND
hWnd
,
const
LPRECT
scroll_rect
,
INT
dx
,
INT
dy
,
static
HWND
fix_caret
(
HWND
hWnd
,
const
RECT
*
scroll_rect
,
INT
dx
,
INT
dy
,
UINT
flags
,
LPBOOL
move_caret
,
LPPOINT
new_caret_pos
)
{
GUITHREADINFO
info
;
...
...
include/winuser.h
View file @
3ad92b0c
...
...
@@ -4185,7 +4185,7 @@ BOOL WINAPI UpdateLayeredWindowIndirect(HWND,UPDATELAYEREDWINDOWINFO CONS
#endif
/* defined(_WINGDI_) && !defined(NOGDI) */
HKL
WINAPI
ActivateKeyboardLayout
(
HKL
,
UINT
);
WORD
WINAPI
CascadeWindows
(
HWND
,
UINT
,
const
LPRECT
,
UINT
,
const
HWND
*
);
WORD
WINAPI
CascadeWindows
(
HWND
,
UINT
,
const
RECT
*
,
UINT
,
const
HWND
*
);
INT
WINAPI
CopyAcceleratorTableA
(
HACCEL
,
LPACCEL
,
INT
);
INT
WINAPI
CopyAcceleratorTableW
(
HACCEL
,
LPACCEL
,
INT
);
#define CopyAcceleratorTable WINELIB_NAME_AW(CopyAcceleratorTable)
...
...
@@ -4259,7 +4259,7 @@ BOOL WINAPI SetMenuItemInfoW(HMENU,UINT,BOOL,const MENUITEMINFOW*);
#define SetMenuItemInfo WINELIB_NAME_AW(SetMenuItemInfo)
BOOL
WINAPI
SetWindowContextHelpId
(
HWND
,
DWORD
);
HWINEVENTHOOK
WINAPI
SetWinEventHook
(
DWORD
,
DWORD
,
HMODULE
,
WINEVENTPROC
,
DWORD
,
DWORD
,
DWORD
);
WORD
WINAPI
TileWindows
(
HWND
,
UINT
,
const
LPRECT
,
WORD
WINAPI
TileWindows
(
HWND
,
UINT
,
const
RECT
*
,
UINT
,
const
HWND
*
);
INT
WINAPI
ToUnicode
(
UINT
,
UINT
,
PBYTE
,
LPWSTR
,
int
,
UINT
);
INT
WINAPI
ToUnicodeEx
(
UINT
,
UINT
,
LPBYTE
,
LPWSTR
,
int
,
UINT
,
HKL
);
...
...
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