Added basic support for SPI_GETSCREENREADER.

This commit is contained in:
Eric Pouech 2001-05-21 18:31:49 +00:00 committed by Alexandre Julliard
parent 476c2b4cc3
commit 7a9ddd4ccb
1 changed files with 7 additions and 1 deletions

View File

@ -437,7 +437,13 @@ BOOL WINAPI SystemParametersInfoA( UINT uiAction, UINT uiParam,
WINE_SPI_FIXME(SPI_GETKEYBOARDPREF); /* 68 WINVER >= 0x400 */
WINE_SPI_FIXME(SPI_SETKEYBOARDPREF); /* 69 WINVER >= 0x400 */
WINE_SPI_FIXME(SPI_GETSCREENREADER); /* 70 WINVER >= 0x400 */
case SPI_GETSCREENREADER:
{
LPBOOL bool = (LPBOOL)pvParam;
*bool = FALSE;
break;
}
WINE_SPI_FIXME(SPI_SETSCREENREADER); /* 71 WINVER >= 0x400 */
case SPI_GETANIMATION: /* 72 WINVER >= 0x400 */