IMPORT_METHOD void ChangeTimerEx(_32 ID, _32 initial, _32 frequency); #define ChangeTimer( ID, Freq ) ChangeTimerEx( ID, Freq, Freq )
Parameters |
Description |
_32 ID |
32 bit ID of the time created by AddTimer. |
_32 initial |
initial delay of the timer. (Might matter if the timer hasn't fired the first time) |
_32 frequency |
new delay between timer callback invokations. |
Changes the frequency of a timer. Reschedule timer only changes the next time it fires, this can adjust the frequency. The simple ChangeTimer macro is sufficient.
Copyright (c) 2000+. All rights reserved.
|
What do you think about this topic? Send feedback!
|