About Global Timer Manager
호환성으로 인해 더 이상 사용하지 않습니다. 대신 Timer 관리자를 사용하십시오!
The Global Timer Manager is used to manage timers in a platform independent manner.
Before using timers you must initialize the Global Timer Manager by calling the TIInit function. After initializing you can create and use timers for timing purposes. If timers managed by the Global Timer Manager are no longer needed, you must call the TIExit function to release the resources allocated by the manager.
The timers are identified by a one based integer value. The number of timers is limited so the timer identifier must not be bigger than this limit. If the timer ID is too great, the Global Timer Manager functions do nothing with the corresponding timer. You must specify the identifier of the target timer in most Global Timer Manager function calls.
Before using a specified timer you must initialize an reset it with the TIReset function. This function resets the value of the timer to 0. The value of a timer is the elapsed time in seconds since the timer was started. You can start a timer at initializing by TIReset or later by calling the TIStart function. Once the timer was started then you can obtain its value with the TIGetValue function. If you want to stop the timer, call the TIStop function.
The TIPrintTimers function are for debug purposes. This functions prints the value of all the timer actually managed by the Global Timer Manager.