mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 09:03:25 +00:00
implemented SPI_GETKEYBOARDCUES (hardcoded to TRUE)
svn path=/trunk/; revision=26400
This commit is contained in:
parent
68e9e8da8f
commit
9b77e5185f
1 changed files with 5 additions and 0 deletions
|
@ -953,6 +953,7 @@ IntSystemParametersInfo(
|
||||||
|
|
||||||
switch(uiAction)
|
switch(uiAction)
|
||||||
{
|
{
|
||||||
|
case SPI_GETKEYBOARDCUES:
|
||||||
case SPI_SETDOUBLECLKWIDTH:
|
case SPI_SETDOUBLECLKWIDTH:
|
||||||
case SPI_SETDOUBLECLKHEIGHT:
|
case SPI_SETDOUBLECLKHEIGHT:
|
||||||
case SPI_SETDOUBLECLICKTIME:
|
case SPI_SETDOUBLECLICKTIME:
|
||||||
|
@ -984,6 +985,9 @@ IntSystemParametersInfo(
|
||||||
|
|
||||||
switch(uiAction)
|
switch(uiAction)
|
||||||
{
|
{
|
||||||
|
case SPI_GETKEYBOARDCUES:
|
||||||
|
ASSERT(pvParam);
|
||||||
|
*((BOOL*)pvParam) = TRUE;
|
||||||
case SPI_GETFLATMENU:
|
case SPI_GETFLATMENU:
|
||||||
ASSERT(pvParam);
|
ASSERT(pvParam);
|
||||||
*((UINT*)pvParam) = WinStaObject->FlatMenu;
|
*((UINT*)pvParam) = WinStaObject->FlatMenu;
|
||||||
|
@ -1412,6 +1416,7 @@ UserSystemParametersInfo(
|
||||||
}
|
}
|
||||||
return( TRUE);
|
return( TRUE);
|
||||||
}
|
}
|
||||||
|
case SPI_GETKEYBOARDCUES:
|
||||||
case SPI_GETFONTSMOOTHING:
|
case SPI_GETFONTSMOOTHING:
|
||||||
case SPI_GETGRADIENTCAPTIONS:
|
case SPI_GETGRADIENTCAPTIONS:
|
||||||
case SPI_GETFOCUSBORDERHEIGHT:
|
case SPI_GETFOCUSBORDERHEIGHT:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue