如何在 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.
相关文章