Files
bitchx/include/timer.h
Kevin Easton 604fcf794b Remove unused kill_timer() and get_delete_timer() functions
These functions are completely unused.  Also remove the TimerList.delete member that is only used
by these functions.
2017-09-20 15:31:41 +10:00

22 lines
716 B
C

/*
* timer.h: header for timer.c
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*/
#ifndef TIMER_H_
#define TIMER_H_
/* functions that may be called by others */
extern void timercmd (char *, char *, char *, char *);
extern void ExecuteTimers (void);
extern char *BX_add_timer (int, char *, double, long, int (*) (void *, char *), char *, char *, int, char *);
extern int BX_delete_timer (char *);
extern void BX_delete_all_timers (void);
extern int timer_exists (char *ref);
void TimerTimeout(struct timeval *wake_time);
char *tcl_add_timer (TimerList **, long, char *, unsigned long);
int tcl_remove_timer (TimerList **, unsigned long);
int timer_callback_exists(void *);
#endif /* TIMER_H_ */