This commit is contained in:
aozhiwei 2022-12-13 18:28:11 +08:00
parent c1f8ea93f7
commit ab63235836

View File

@ -502,4 +502,79 @@ namespace a8
base->running_timer = nullptr;
}
void XTimer::SetTimeout(int time, TimerCb cb)
{
}
void XTimer::SetTimeoutEx(int time, TimerCb cb, Attacher* attacher)
{
}
XTimerWp XTimer::SetTimeoutWp(int time, TimerCb cb)
{
}
XTimerWp XTimer::SetTimeoutWpEx(int time, TimerCb cb, Attacher* attacher)
{
}
void XTimer::SetInterval(int time, a8::TimerCb cb)
{
}
void XTimer::SetIntervalEx(int time, a8::TimerCb cb, Attacher* attacher)
{
}
XTimerWp XTimer::SetIntervalWp(int time, TimerCb cb)
{
}
XTimerWp XTimer::SetIntervalWpEx(int time, TimerCb cb, Attacher* attacher)
{
}
void XTimer::FireEvent(XTimerWp& timer_wp, a8::Args& args)
{
}
void XTimer::ModifyTime(XTimerWp& timer_wp, int expire_time)
{
}
void XTimer::Delete(XTimerWp& timer_wp)
{
}
long long XTimer::GetRemainTime(XTimerWp& timer_wp)
{
}
bool XTimer::IsRunning()
{
}
void XTimer::ClearAttacher(Attacher* attacher)
{
}
void XTimer::DestoryAttacher(Attacher* attacher)
{
}
}