2019-03-24 01:03:31 +00:00
|
|
|
#ifndef WSFS_ADAPTER_IMPL_TIME_TIMER_INTERN_H
|
|
|
|
#define WSFS_ADAPTER_IMPL_TIME_TIMER_INTERN_H
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 00:15:29 +00:00
|
|
|
#include "wsfs/adapter/impl/time/timer.h"
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2019-03-24 17:02:28 +00:00
|
|
|
extern bool wsfs_impl_timer_is_timeout(
|
|
|
|
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_timer_trigger(
|
|
|
|
struct wsfs_impl_timer * timer);
|
2019-02-09 18:02:53 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|