1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/lib/webfuse/impl/timer/manager_intern.h

27 lines
446 B
C
Raw Normal View History

#ifndef WF_IMPL_TIMER_MANAGER_INTERN_H
#define WF_IMPL_TIMER_MANAGER_INTERN_H
#include "webfuse/impl/timer/manager.h"
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_timer;
extern void wf_impl_timer_manager_addtimer(
struct wf_timer_manager * manager,
struct wf_timer * timer);
extern void wf_impl_timer_manager_removetimer(
struct wf_timer_manager * manager,
struct wf_timer * timer);
#ifdef __cplusplus
}
#endif
#endif