1 /* This file Copyright 1992 by Clifford A. Adams */
2 /* sdisp.h
3  *
4  * scan display functions
5  */
6 
7 	/* height of screen in characters */
8 EXT int scr_height INIT(0);
9 	/* width of screen in characters */
10 EXT int scr_width INIT(0);
11 
12 /* has the window been resized? */
13 EXT bool s_resized INIT(FALSE);
14 
15 /* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */
16 
17 void s_goxy _((int,int));
18 void s_mail_and_place _((void));
19 void s_refresh_top _((void));
20 void s_refresh_bot _((void));
21 void s_refresh_entzone _((void));
22 void s_place_ptr _((void));
23 void s_refresh_status _((int));
24 void s_refresh_description _((int));
25 void s_ref_entry _((int,int));
26 void s_rub_ptr _((void));
27 void s_refresh _((void));
28 int s_initscreen _((void));
29 void s_ref_status_onpage _((long));
30 void s_resize_win _((void));
31