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
97862521
Commit
97862521
authored
Mar 29, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Mar 29, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Implement SystemParametersInfo(SPI_[SG]ETCURSORSHADOW).
parent
3244096d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
2 deletions
+8
-2
sysparams.c
dlls/user/sysparams.c
+8
-2
No files found.
dlls/user/sysparams.c
View file @
97862521
...
...
@@ -2177,8 +2177,14 @@ BOOL WINAPI SystemParametersInfoW( UINT uiAction, UINT uiParam,
WINE_SPI_FIXME
(
SPI_SETTOOLTIPANIMATION
);
/* 0x1017 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_GETTOOLTIPFADE
);
/* 0x1018 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_SETTOOLTIPFADE
);
/* 0x1019 _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_GETCURSORSHADOW
);
/* 0x101A _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
WINE_SPI_FIXME
(
SPI_SETCURSORSHADOW
);
/* 0x101B _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
case
SPI_GETCURSORSHADOW
:
/* 0x101A _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
ret
=
get_user_pref_param
(
1
,
0x20
,
pvParam
);
break
;
case
SPI_SETCURSORSHADOW
:
/* 0x101B _WIN32_WINNT >= 0x500 || _WIN32_WINDOW > 0x400 */
ret
=
set_user_pref_param
(
1
,
0x20
,
(
BOOL
)
pvParam
,
fWinIni
);
break
;
WINE_SPI_FIXME
(
SPI_GETMOUSESONAR
);
/* 0x101C _WIN32_WINNT >= 0x510 || _WIN32_WINDOW >= 0x490*/
WINE_SPI_FIXME
(
SPI_SETMOUSESONAR
);
/* 0x101D _WIN32_WINNT >= 0x510 || _WIN32_WINDOW >= 0x490*/
WINE_SPI_FIXME
(
SPI_GETMOUSECLICKLOCK
);
/* 0x101E _WIN32_WINNT >= 0x510 || _WIN32_WINDOW >= 0x490*/
...
...
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