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
29565d55
Commit
29565d55
authored
Apr 11, 2008
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Apr 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Fix Win64 warnings.
parent
287561cc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
exticon.c
dlls/user32/exticon.c
+1
-1
listbox.c
dlls/user32/listbox.c
+1
-1
sysparams.c
dlls/user32/sysparams.c
+1
-1
No files found.
dlls/user32/exticon.c
View file @
29565d55
...
...
@@ -259,7 +259,7 @@ static BOOL CALLBACK extract_icons_callback(HMODULE hModule, LPCWSTR pwszType, L
LONG_PTR
lParam
)
{
struct
extract_icons_state
*
pState
=
(
struct
extract_icons_state
*
)
lParam
;
INT
idCurrent
=
(
INT
)
pwszName
;
INT
idCurrent
=
LOWORD
(
pwszName
)
;
/* If the handle array pointer is NULL, we just count the number of icons in the module. */
if
(
!
pState
->
pahIcon
)
{
...
...
dlls/user32/listbox.c
View file @
29565d55
...
...
@@ -2607,7 +2607,7 @@ static LRESULT WINAPI ListBoxWndProc_common( HWND hwnd, UINT msg,
CREATESTRUCTW
*
lpcs
=
(
CREATESTRUCTW
*
)
lParam
;
if
(
lpcs
->
style
&
LBS_COMBOBOX
)
lphc
=
(
LPHEADCOMBO
)
lpcs
->
lpCreateParams
;
if
(
!
LISTBOX_Create
(
hwnd
,
lphc
))
return
-
1
;
TRACE
(
"creating
wnd=%p descr=%x
\n
"
,
hwnd
,
GetWindowLongPtrW
(
hwnd
,
0
)
);
TRACE
(
"creating
hwnd %p descr %p
\n
"
,
hwnd
,
(
void
*
)
GetWindowLongPtrW
(
hwnd
,
0
)
);
return
0
;
}
/* Ignore all other messages before we get a WM_CREATE */
...
...
dlls/user32/sysparams.c
View file @
29565d55
...
...
@@ -2110,7 +2110,7 @@ BOOL WINAPI SystemParametersInfoW( UINT uiAction, UINT uiParam,
case
SPI_SETMOUSESPEED
:
/* 113 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
{
ret
=
save_int_param
(
SPI_SETMOUSE_REGKEY
,
SPI_SETMOUSE_VALNAME3
,
&
mouse_speed
,
(
INT
)
pvParam
,
fWinIni
);
&
mouse_speed
,
PtrToInt
(
pvParam
)
,
fWinIni
);
break
;
}
...
...
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