Starts a timer.
TimerStart (hTimer)
Variable | Description |
---|---|
hTimer | A handle to the timer to start. HTIMER. |
TimerStart starts the specified timer. The timer will record the time that elapses until you pause or stop it.
HTIMER TotalTimer TotalTimer = TimerCreate () // make a timer handle TimerStart (TotalTimer) // initialize & start a timer