ctimer.cpp
上传用户:chn_coc
上传日期:2007-12-20
资源大小:563k
文件大小:1k
- /*
- * ctimer.cpp
- * PeerCast
- *
- * Created by mode7 on Mon Apr 12 2004.
- * Copyright (c) 2002-2004 peercast.org. All rights reserved.
- *
- */
- #include "ctimer.h"
- Timer::Timer( EventLoopRef mainLoop,
- EventTimerInterval inFireDelay,
- EventTimerInterval inInterval,
- void* inTimerData,
- EventLoopTimerProcPtr userRoutine )
- : mTimerUPP( NewEventLoopTimerUPP(userRoutine) )
- {
- InstallEventLoopTimer( mainLoop
- ,inFireDelay
- ,inInterval
- ,mTimerUPP
- ,inTimerData
- ,&mTimer);
- }