1 /*
2  *	xtrojka (c) 1994,1995,1996 Maarten Los
3  *
4  *	#include "COPYRIGHT"
5  *
6  *	created:	12.iii.1996
7  *	modified:
8  *
9  *	header file for sh_stat.c
10  */
11 
12 #ifndef _sh_stat_h_
13 #define _sh_stat_h_
14 
15 /*
16  *	size of statistics window
17  */
18 #define STAT_XSIZE	200
19 #define STAT_YSIZE	200
20 
21 /*
22  *	function prototypes
23  */
24 
25 void init_stat_window(void);
26 void show_stat(void);
27 void redraw_stat(Widget, XExposeEvent*, String*, Cardinal*);
28 void update_stat(void);
29 
30 #endif /* _sh_stat_h_ */
31