File: timer.h

package info (click to toggle)
ircii-pana 75-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 4,448 kB
  • ctags: 7,556
  • sloc: ansic: 82,667; makefile: 989; tcl: 153; sh: 124
file content (21 lines) | stat: -rw-r--r-- 614 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * 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	*add_timer (int, char *, long, long, int (*) (void *), char *, char *, Window *);
extern	int	delete_timer (char *);
extern	void	delete_all_timers (void);

extern	time_t	TimerTimeout (void);
char		*tcl_add_timer (TimerList **, int, char *, unsigned long);
int 		tcl_remove_timer (TimerList **, unsigned long);


#endif /* _TIMER_H_ */