2020-06-28 17:43:08 +00:00
|
|
|
#ifndef WF_IMPL_TIMER_MANAGER_INTERN_H
|
|
|
|
#define WF_IMPL_TIMER_MANAGER_INTERN_H
|
2020-03-29 15:40:33 +00:00
|
|
|
|
2020-06-28 17:43:08 +00:00
|
|
|
#include "webfuse/impl/timer/manager.h"
|
2020-03-29 15:40:33 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct wf_timer;
|
|
|
|
|
2020-06-28 17:43:08 +00:00
|
|
|
extern void wf_impl_timer_manager_addtimer(
|
2020-03-29 15:40:33 +00:00
|
|
|
struct wf_timer_manager * manager,
|
|
|
|
struct wf_timer * timer);
|
|
|
|
|
2020-06-28 17:43:08 +00:00
|
|
|
extern void wf_impl_timer_manager_removetimer(
|
2020-03-29 15:40:33 +00:00
|
|
|
struct wf_timer_manager * manager,
|
|
|
|
struct wf_timer * timer);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|