2019-02-25 20:35:38 +00:00
|
|
|
#ifndef WSFS_ADAPTER_TIME_TIMEOUT_MANAGER_INTERN_H
|
|
|
|
#define WSFS_ADAPTER_TIME_TIMEOUT_MANAGER_INTERN_H
|
2019-02-09 18:02:53 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
#include "wsfs/adapter/time/timeout_manager.h"
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void wsfs_timeout_manager_addtimer(
|
|
|
|
struct wsfs_timeout_manager * manager,
|
|
|
|
struct wsfs_timer * timer);
|
|
|
|
|
|
|
|
extern void wsfs_timeout_manager_removetimer(
|
|
|
|
struct wsfs_timeout_manager * manager,
|
|
|
|
struct wsfs_timer * timer);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|