Interacts with certain boolean system parameters
Syntax
BOOL WINAPI SHBoolSystemParametersInfo (
UINT uiAction,
PVOID pData
)
Parameters
- uiAction
- The SPI_* parameter to set or get
- pData
- If uiAction is a SPI_GET value, this is a pointer to a BOOL that receives the result. Otherwise this is the pointer to the BOOL value to set.
Return Value
Nonzero if the SystemParametersInfo function succeeds, zero if not
Remarks
The function accepts all SPI_* values over 0x1000, of those below it only accepts SPI_SETDRAGFULLWINDOWS, SPI_GETDRAGFULLWINDOWS, SPI_GETANIMATION, SPI_SETANIMATION, SPI_GETFONTSMOOTHING and SPI_SETFONTSMOOTHING
This function is also known as _SHBoolSystemParametersInfo@8.