###User Defined Function###
_WinAPI_SystemParametersInfo

###Description###
Retrieves or sets the value of one of the system-wide parameters

###Syntax###
#include <WinAPI.au3>
_WinAPI_SystemParametersInfo ( $iAction [, $iParam = 0 [, $vParam = 0 [, $iWinIni = 0]]] )


###Parameters###
@@ParamTable@@
$iAction
	The system-wide parameter to be retrieved or set
$iParam
	[optional] A parameter whose usage and format depends on the parameter being queried or set
$vParam
	[optional] A parameter whose usage and format depends on the parameter being queried or set
$iWinIni
	[optional] If a system parameter is being set, specifies whether the user profile is to be updated, and
	if so, whether the $WM_SETTINGCHANGE message is to be broadcast. This parameter can be zero if you don't want
	to update the user profile or it can be one or more of the following values:
	$SPIF_UPDATEINIFILE - Writes the new setting to the user profile
	$SPIF_SENDCHANGE - Broadcasts the $WM_SETTINGCHANGE message after updating the user profile
@@End@@

###ReturnValue###
@@ReturnTable@@
Success:	True
Failure:	False, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information
@@End@@


###Remarks###
This function always call the Unicode version so $vParam must be inaccordance when using strings.


###Related###


###See Also###
@@MsdnLink@@ SystemParametersInfo
