mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
13 lines
216 B
C++
13 lines
216 B
C++
#ifndef EVENT_TIMER_HPP
|
|
#define EVENT_TIMER_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
class EvtContext;
|
|
|
|
int32_t IEvtTimerDispatch(EvtContext* context);
|
|
|
|
uint32_t IEvtTimerGetNextTime(EvtContext* context, uint32_t currTime);
|
|
|
|
#endif
|