Example: nca_set_think_time

In the following example, the nca_set_think_time function sets the think time range from 2000 to 5000 milliseconds using define statements.

#define MINTHINK 2000
#define MAXTHINK 5000
int LR_FUNC Action(LR_PARAM p) {
    nca_set_think_time(MINTHINK, MAXTHINK);
    nca_set_window ("ttstpdemo :");
    nca_button_press ("OK");
    lr_rendezvous("StartActions");
}