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
8e060022
Commit
8e060022
authored
Jun 11, 2009
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 11, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32: Add support for SPI_GETFOCUSBORDERWIDTH and SPI_GETFOCUSBORDERHEIGHT.
parent
10ccf1d4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
3 deletions
+10
-3
sysparams.c
dlls/user32/sysparams.c
+10
-3
No files found.
dlls/user32/sysparams.c
View file @
8e060022
...
...
@@ -2435,10 +2435,17 @@ BOOL WINAPI SystemParametersInfoW( UINT uiAction, UINT uiParam,
ret
=
FALSE
;
break
;
WINE_SPI_FIXME
(
SPI_GETFOCUSBORDERWIDTH
);
/* 0x200E _WIN32_WINNT >= 0x510 */
WINE_SPI_FIXME
(
SPI_SETFOCUSBORDERWIDTH
);
/* 0x200F _WIN32_WINNT >= 0x510 */
WINE_SPI_FIXME
(
SPI_GETFOCUSBORDERHEIGHT
);
/* 0x2010 _WIN32_WINNT >= 0x510 */
case
SPI_GETFOCUSBORDERWIDTH
:
/* 0x200E _WIN32_WINNT >= 0x510 */
case
SPI_GETFOCUSBORDERHEIGHT
:
/* 0x200F _WIN32_WINNT >= 0x510 */
if
(
!
pvParam
)
ret
=
FALSE
;
else
*
(
UINT
*
)
pvParam
=
1
;
break
;
WINE_SPI_FIXME
(
SPI_SETFOCUSBORDERWIDTH
);
/* 0x2010 _WIN32_WINNT >= 0x510 */
WINE_SPI_FIXME
(
SPI_SETFOCUSBORDERHEIGHT
);
/* 0x2011 _WIN32_WINNT >= 0x510 */
case
SPI_GETFONTSMOOTHINGORIENTATION
:
/* 0x2012 */
spi_idx
=
SPI_SETFONTSMOOTHINGORIENTATION_IDX
;
if
(
!
spi_loaded
[
spi_idx
])
...
...
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