You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfuse/lib/webfuse/impl/timer/manager.h

28 lines
405 B

#ifndef WF_IMPL_TIMER_MANAGER_H
#define WF_IMPL_TIMER_MANAGER_H
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_timer_manager;
extern struct wf_timer_manager *
wf_impl_timer_manager_create(void);
extern void
wf_impl_timer_manager_dispose(
struct wf_timer_manager * manager);
extern void
wf_impl_timer_manager_check(
struct wf_timer_manager * manager);
#ifdef __cplusplus
}
#endif
#endif