File: timer.h

package info (click to toggle)
epic4 1%3A2.2-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,600 kB
  • ctags: 5,377
  • sloc: ansic: 55,723; makefile: 656; sh: 158; perl: 30
file content (22 lines) | stat: -rw-r--r-- 507 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * timer.h: header for timer.c 
 *
 * Copyright 1997 EPIC Software Labs
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
 */

#ifndef __timer_h__
#define __timer_h__

	BUILT_IN_COMMAND(timercmd);

	void	ExecuteTimers 	(void);
	char *	add_timer	(int, const char *, double, long, 
				 int (*) (void *), void *, 
				 const char *, int);
	int	timer_exists	(const char *ref);
	int     remove_timer	(const char *ref);
	Timeval	TimerTimeout 	(void);
	char *	timerctl	(char *);

#endif /* _TIMER_H_ */