7.7.8.10. GEL_CancelTimerΒΆ

Cancels a previously set GEL timer.

Syntax

GEL_CancelTimer( timer_id );

Parameters

timer_id: specifies the same timer_id that was used to set the timer.

Description

Cancels a timer that was previously set with GEL_SetTimer. The timer_id specified in the second parameter of GEL_SetTimer uniquely identifies the timer, and that same value used in this function cancels that specific timer.

Synchronous

Synchronous from GEL: Yes

Completely synchronous: Yes

Example

GEL_CancelTimer(1);

Related Topics

GEL_IsTimerSet

GEL_SetTimer