Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
36b698fc
Commit
36b698fc
authored
Apr 02, 2001
by
James Juran
Committed by
Alexandre Julliard
Apr 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add value 106 to SystemParametersInfo.
parent
5dabda3d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
winuser.h
include/winuser.h
+3
-0
sysparams.c
windows/sysparams.c
+5
-0
No files found.
include/winuser.h
View file @
36b698fc
...
...
@@ -2316,6 +2316,8 @@ typedef struct
#define SPI_SETMOUSEHOVERTIME 103
#define SPI_GETWHEELSCROLLLINES 104
#define SPI_SETWHEELSCROLLLINES 105
#define SPI_GETMENUSHOWDELAY 106
#define SPI_SETMENUSHOWDELAY 107
#define SPI_GETSHOWIMEUI 110
#define SPI_SETSHOWIMEUI 111
...
...
@@ -2324,6 +2326,7 @@ typedef struct
#define SPI_GETMOUSESPEED 112
#define SPI_SETMOUSESPEED 113
#define SPI_GETSCREENSAVERRUNNING 114
#define SPI_GETDESKWALLPAPER 115
#define SPI_GETACTIVEWINDOWTRACKING 0x1000
#define SPI_SETACTIVEWINDOWTRACKING 0x1001
...
...
windows/sysparams.c
View file @
36b698fc
...
...
@@ -505,8 +505,13 @@ BOOL WINAPI SystemParametersInfoA( UINT uiAction, UINT uiParam,
case
SPI_GETWHEELSCROLLLINES
:
/* 104 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
*
(
UINT
*
)
pvParam
=
3
;
/* default for num scroll lines */
break
;
WINE_SPI_FIXME
(
SPI_SETWHEELSCROLLLINES
);
/* 105 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
case
SPI_GETMENUSHOWDELAY
:
/* 106 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
*
(
UINT
*
)
pvParam
=
400
;
/* Tested against Windows NT 4.0 and Windows 2000 */
break
;
WINE_SPI_FIXME
(
SPI_GETSHOWIMEUI
);
/* 110 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_SETSHOWIMEUI
);
/* 111 _WIN32_WINNT >= 0x400 || _WIN32_WINDOW > 0x400 */
...
...
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