File: status.h

package info (click to toggle)
teknap 1.4-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 5,428 kB
  • ctags: 6,297
  • sloc: ansic: 55,591; makefile: 545; sh: 112
file content (29 lines) | stat: -rw-r--r-- 609 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * status.h: header for status.c
 *
 * Written By Michael Sandrof
 *
 * Copyright(c) 1990 
 *
 * See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT 
 *
 * @(#)$Id: status.h,v 1.1.1.1 2000/09/30 22:27:04 edwards Exp $
 */

#ifndef __status_h_
#define __status_h_

	void	make_status (Window *);
	void	set_alarm (Window *, char *, int);
	char	*update_clock (int);
	void	reset_clock (Window *, char *, int);
	void	build_status (Window *, char *, int);
	int	status_update (int);
	void	rebuild_a_status(Window *);
	
#define GET_TIME 1
#define RESET_TIME 2

extern	Status	main_status;

#endif /* __status_h_ */