Returns the difference in time from a previous call to TimerInit().
TimerDiff ( handle )
| handle | Handle returned from a previous call to TimerInit(). |
Local $begin = TimerInit()
Sleep(3000)
Local $dif = TimerDiff($begin)
MsgBox(0, "Time Difference", $dif)