###User Defined Function###
_WinAPI_GetProcessTimes

###Description###
Retrieves timing information for the specified process.

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


###Parameters###
@@ParamTable@@
$PID
	[optional] The PID of the process. Default (0) is the current process.
@@End@@

###ReturnValue###
@@ReturnTable@@
Success 	The array that contains the following information:
	[0] - $tagFILETIME structure that contains the creation time of the process.
	[1] - The time that the process has executed in kernel mode, in 100-nanosecond time units.
	[2] - The time that the process has executed in user mode, in 100-nanosecond time units.
Failure 	Sets the @error flag to non-zero, call <a href="_WinAPI_GetLastError.htm">_WinAPI_GetLastError()</a> to get extended error information.
@@End@@


###Remarks###
None


###Related###


###See Also###
@@MsdnLink@@ GetProcessTimes


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