SystemParametersInfo function user32
Retrieves or sets the value of one of the system-wide parameters. This function can also update the user profile while setting a parameter.
BOOL SystemParametersInfoW(
UINT uiAction,
UINT uiParam,
PVOID pvParam,
UINT fWinIni
);
Implementation
int SystemParametersInfo(
int uiAction, int uiParam, Pointer pvParam, int fWinIni) =>
_SystemParametersInfo(uiAction, uiParam, pvParam, fWinIni);