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
d62da812
Commit
d62da812
authored
Oct 14, 2007
by
Vincent Pelletier
Committed by
Alexandre Julliard
Oct 15, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Implement SPI_GETMOUSESPEED in SystemParametersInfoW.
parent
155cd24f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
sysparams.c
dlls/user32/sysparams.c
+9
-1
No files found.
dlls/user32/sysparams.c
View file @
d62da812
...
...
@@ -2095,7 +2095,15 @@ BOOL WINAPI SystemParametersInfoW( UINT uiAction, UINT uiParam,
WINE_SPI_FIXME
(
SPI_GETSHOWIMEUI
);
/* 110 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_SETSHOWIMEUI
);
/* 111 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_GETMOUSESPEED
);
/* 112 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
case
SPI_GETMOUSESPEED
:
/* 112 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
{
int
buf
[
3
];
ret
=
SystemParametersInfoW
(
SPI_GETMOUSE
,
0
,
buf
,
fWinIni
);
*
(
INT
*
)
pvParam
=
buf
[
2
];
break
;
}
WINE_SPI_FIXME
(
SPI_SETMOUSESPEED
);
/* 113 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
case
SPI_GETSCREENSAVERRUNNING
:
...
...
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