void opend(int handle)
Informs mantra that a long operation begun with opstart has completed. Pass in the value returned by opstart.
int op_handle = opstart("Performing long operation");perform_long_operation();if (op_handle >= 0) opend(op_handle);