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
3f13c7a9
Commit
3f13c7a9
authored
Apr 28, 2000
by
Chris Morgan
Committed by
Alexandre Julliard
Apr 28, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added default values for SPI_GETMOUSEHOVERHEIGHT, SPI_GETMOUSEHOVERWIDTH and
SPI_GETMOUSEHOVERTIME to SystemParametersInfo16().
parent
0a54d5a3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
sysparams.c
windows/sysparams.c
+13
-0
No files found.
windows/sysparams.c
View file @
3f13c7a9
...
...
@@ -440,6 +440,19 @@ BOOL16 WINAPI SystemParametersInfo16( UINT16 uAction, UINT16 uParam,
GetSystemMetrics
(
SM_CYSCREEN
)
);
break
;
/* FIXME need to implement SPI_SETMOUSEHOVER... */
case
SPI_GETMOUSEHOVERWIDTH
:
*
(
INT16
*
)
lpvParam
=
4
;
break
;
case
SPI_GETMOUSEHOVERHEIGHT
:
*
(
INT16
*
)
lpvParam
=
4
;
break
;
case
SPI_GETMOUSEHOVERTIME
:
*
(
INT16
*
)
lpvParam
=
400
;
/* default for menu dropdowns */
break
;
default:
FIXME
(
"Unknown option %d.
\n
"
,
uAction
);
SetLastError
(
ERROR_INVALID_SPI_VALUE
);
...
...
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