2019-03-24 01:03:31 +00:00
|
|
|
#ifndef WSFS_ADAPTER_IMPL_TIME_TIMEOUT_MANAGER_INTERN_H
|
|
|
|
#define WSFS_ADAPTER_IMPL_TIME_TIMEOUT_MANAGER_INTERN_H
|
2019-02-09 18:02:53 +00:00
|
|
|
|
2019-03-24 00:15:29 +00:00
|
|
|
#include "wsfs/adapter/impl/time/timeout_manager.h"
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 17:02:28 +00:00
|
|
|
extern void wsfs_impl_timeout_manager_addtimer(
|
|
|
|
struct wsfs_impl_timeout_manager * manager,
|
|
|
|
struct wsfs_impl_timer * timer);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
2019-03-24 17:02:28 +00:00
|
|
|
extern void wsfs_impl_timeout_manager_removetimer(
|
|
|
|
struct wsfs_impl_timeout_manager * manager,
|
|
|
|
struct wsfs_impl_timer * timer);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|