Graphisoft®

GSRootVersion: 1.0

TIStart

호환성으로 인해 더 이상 사용하지 않습니다. 대신 Timer 관리자를 사용하십시오!

The TIStart function starts the specified timer.

void TIStart(
  long          timerID            // ID of timer
);

 

Parameters

timerID
Specifies the timer to reset. It must be nonnegative. If this parameter is 0, the Global Timer Manager calls the TIInit function to initialize the manager and all the timers belong to it.

Remarks

Global Timer Manager is able to work only with limited number of timers, so if you pass too big number in timerID parameter, TIStart does nothing.

If you finish using a timer started with TIStart, call TIStop.

You can call TIStart several times, at first time Global Timer Manager registers the current time, at next time the reference counter will only be increased.

Requirements

    Header: Declared in GSTime.hpp
    Import Library: Link with GSRootImp.lib

See Also

Global Timer Manager Functions, TIInit, TIStop