简体   繁体   中英

How to create timer in c++

Two independent timers with two different time periods running simultaneously. Using SetWaitableTimer .

SetWaitableTimer(mhandle, &liDueTime, 0, onCallFunc, this, TRUE);

What iperiod indicate?

After the first timer expiry at lpDueTime , the timer will go off every lPeriod milliseconds unless

  • lPeriod is zero. Zero means the timer goes off only once, or
  • lPeriod is less than zero. SetWaitableTimer fails if given a negative period.

For more details see Documentation .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM