Calcule le temps �coul� � partir d'un pr�c�dent appel � TimerInit().
TimerDiff ( handle )
handle | Handle retourn� � partir d'un pr�c�dent appel � TimerInit(). |
#include <MsgBoxConstants.au3> Local $hTimer = TimerInit() ; D�marre le chrono et stocke le handle dans une variable. Sleep(3000) ; Pause pendant 3 secondes. Local $fDiff = TimerDiff($hTimer) ; Temps �coul� depuis l'appel pr�c�dent � TimerInit. ; La variable o� nous avons stock� le handle de TimerInit est pass� comme "handle" de TimerDiff. MsgBox($MB_SYSTEMMODAL, "Temps �coul�: ", $fDiff)