mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
acf2ec806b
A left over from the CVS Id removal. Also, for a few files, normalize the order in which things are declared in headers.
27 lines
774 B
C
27 lines
774 B
C
#ifndef EL__MAIN_TIMER_H
|
|
#define EL__MAIN_TIMER_H
|
|
|
|
#include "util/time.h"
|
|
|
|
/* Only available internally. */
|
|
struct timer;
|
|
|
|
/* Little hack, timer_id_T is in fact a pointer to the timer, so
|
|
* it has to be of a pointer type.
|
|
* The fact each timer is allocated ensure us that timer id will
|
|
* be unique.
|
|
* That way there is no need of id field in struct timer. --Zas */
|
|
typedef struct timer * timer_id_T;
|
|
|
|
/* Should always be NULL or you'll have to modify install_timer()
|
|
* and kill_timer(). --Zas */
|
|
#define TIMER_ID_UNDEF ((timer_id_T) NULL)
|
|
|
|
int get_timers_count();
|
|
void check_timers(timeval_T *last_time);
|
|
void install_timer(timer_id_T *id, milliseconds_T delay, void (*)(void *), void *);
|
|
void kill_timer(timer_id_T *id);
|
|
int get_next_timer_time(timeval_T *t);
|
|
|
|
#endif
|