nca_wait_for_timer
Suspends script execution until the specified timer times out.
int nca_wait_for_timer( int timer_number );
| timer_number | The position of the timer in the list or one of the Timer Number Constants. The first timer is 0. The last is the timer count -1. |
nca_wait_for_timer suspends script execution until the specified timer times out.
Parameterization
Parameterization is not available for this function.
Example
These examples show the use of nca_wait_for_timer.
nca_wait_for_timer(NCA_TIMER_NEAREST);
...
nca_wait_for_timer( 3);
....
nca_wait_for_timer(NCA_TIMER_LAST);

