###User Defined Function###
_WinAPI_SetPriorityClass

###Description###
Sets the priority class for the specified process.

###Syntax###
#include <WinAPIProc.au3>
_WinAPI_SetPriorityClass ( $iPriority [, $PID = 0] )


###Parameters###
@@ParamTable@@
$iPriority
	The priority class for the process. This parameter can be one of the following values.
	$ABOVE_NORMAL_PRIORITY_CLASS
	$BELOW_NORMAL_PRIORITY_CLASS
	$HIGH_PRIORITY_CLASS
	$IDLE_PRIORITY_CLASS
	$NORMAL_PRIORITY_CLASS
	$REALTIME_PRIORITY_CLASS

	<strong>Windows Vista or later</strong>
	$PROCESS_MODE_BACKGROUND_BEGIN
	$PROCESS_MODE_BACKGROUND_END
$PID
	[optional] The PID of the process. Default (0) is the current process.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	True
Failure 	False
@@End@@


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ SetPriorityClass


###Example###
@@IncludeExample@@
