码迷,mamicode.com
首页 > 其他好文 > 详细

Delphi的DLL里如何实现定时器功能?

时间:2014-07-29 21:33:32      阅读:283      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   art   代码   ar   .net   log   

一,首先引入“mmsystem”单元。

二,启动定时器:

     var

        MMTimerID: Integer; // 定时器ID

 

        MMTimerID := timeSetEvent(1000, 0, @TimerProc, 0, TIME_PERIODIC);

三,定时器过程代码:

 procedure TimerProc(uTimerID, uMessage: UINT; dwUser, dw1, dw2: DWORD); stdcall;
begin
  // 业务代码
end;

四,结束定时器:

         timeKillEvent(MMTimerID);

 

参考:

http://blog.csdn.net/sunylat/article/details/28859007

Delphi的DLL里如何实现定时器功能?,布布扣,bubuko.com

Delphi的DLL里如何实现定时器功能?

标签:blog   http   io   art   代码   ar   .net   log   

原文地址:http://www.cnblogs.com/findumars/p/3876315.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!