ctimer.cpp
上传用户:chn_coc
上传日期:2007-12-20
资源大小:563k
文件大小:1k
源码类别:

P2P编程

开发平台:

Windows_Unix

  1. /*
  2.  *  ctimer.cpp
  3.  *  PeerCast
  4.  *
  5.  *  Created by mode7 on Mon Apr 12 2004.
  6.  *  Copyright (c) 2002-2004 peercast.org. All rights reserved.
  7.  *
  8.  */
  9. #include "ctimer.h"
  10. Timer::Timer( EventLoopRef  mainLoop,
  11.   EventTimerInterval inFireDelay,
  12.   EventTimerInterval inInterval,
  13.   void*  inTimerData,
  14.   EventLoopTimerProcPtr userRoutine )
  15. : mTimerUPP( NewEventLoopTimerUPP(userRoutine) )
  16. {
  17. InstallEventLoopTimer( mainLoop
  18.   ,inFireDelay
  19.   ,inInterval
  20.   ,mTimerUPP
  21.   ,inTimerData
  22.   ,&mTimer);
  23. }