VC++时钟函数
VC++时钟函数
发布时间:2016-12-28 来源:查字典编辑
摘要:时钟的使用1、声明复制代码代码如下:VOIDCALLBACKplayproc(HWNDhwnd,//handleofwindowfortim...

时钟的使用

1、声明

复制代码 代码如下:

VOID CALLBACK playproc(

HWND hwnd, // handle of window for timer messages

UINT uMsg, // WM_TIMER message

UINT idEvent, // timer identifier

DWORD dwTime // current system time

)

2、声明一个时钟句柄

const ID=111;

3、调用时钟函数

SetTimer( ID,1500,&playproc);

KillTimer( ID);

一般使用判断逻辑:

VOID CALLBACK playproc( HWND hwnd, // handle of window for timer messages UINT uMsg, // WM_TIMER message UINT idEvent, // timer identifier DWORD dwTime // current system time</span> ) const ID=111; void XXXXX() { UpdateData(true); if (m_?) { SetTimer(ID,1500,&playproc); } else KillTimer(ID); }

以上所述就是本文的全部内容了,希望大家能够喜欢。

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新C语言学习
热门C语言学习
编程开发子分类