SetTimerEx


Calls the timer message after the given delay and gives an ID and two parameters to the timer message. With SetTimerEx(), you can set a timer with a delay of zero. KillTimerEx() is used to stop an IDed timer. Syntax:

SetTimerEx(flex_delay, ID, param0, param1);

ID: The ID of the timer is retrieved in the timer message with GetSenderID(). It is also used by KillTimerEx() to stop the timer before the message is called.

paramX: These parameters become the first and second parameters of the timer message.