How to create timer in WinApi (C++)?(如何在 WinApi (C++) 中创建计时器?)
问题描述
如何在 WinApi (C++) 中创建计时器?
How to create timer in WinApi (C++)?
推荐答案
致电 SetTimer 函数.这允许您指定回调函数,或让 Windows 向您发送 WM_TIMER 消息.
Call the SetTimer function. This allows you to specify a callback function, or to have Windows post you a WM_TIMER message.
这篇关于如何在 WinApi (C++) 中创建计时器?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!