Function Reference


TimerDiff

Returns the difference in time from a previous call to TimerInit().

TimerDiff ( handle )

Parameters

handle Handle returned from a previous call to TimerInit().

Return Value

Returns the time difference (in milliseconds) from a previous call to TimerInit().

Remarks

None.

Related

TimerInit

Example


Local $begin = TimerInit()
Sleep(3000)
Local $dif = TimerDiff($begin)
MsgBox(0, "Time Difference", $dif)