1 /* rt-util.h
2 */
3 /* This software is copyrighted as detailed in the LICENSE file. */
4 
5 
6 EXT char spin_char INIT(' ');	/* char to put back when we're done spinning */
7 EXT long spin_estimate;		/* best guess of how much work there is */
8 EXT long spin_todo;		/* the max word to do (might decrease) */
9 EXT int  spin_count;		/* counter for when to spin */
10 EXT int  spin_marks INIT(25);	/* how many bargraph marks we want */
11 
12 #define SPIN_OFF	0
13 #define SPIN_POP	1
14 #define SPIN_FOREGROUND	2
15 #define SPIN_BACKGROUND 3
16 #define SPIN_BARGRAPH	4
17 
18 EXT bool performed_article_loop;
19 
20 /* DON'T EDIT BELOW THIS LINE OR YOUR CHANGES WILL BE LOST! */
21 
22 char* extract_name _((char*));
23 char* compress_name _((char*,int));
24 char* compress_address _((char*,int));
25 char* compress_from _((char*,int));
26 char* compress_date _((ARTICLE*,int));
27 bool subject_has_Re _((char*,char**));
28 char* compress_subj _((ARTICLE*,int));
29 void setspin _((int));
30 void spin _((int));
31 bool inbackground _((void));
32 void perform_status_init _((long));
33 void perform_status _((long,int));
34 int perform_status_end _((long,char*));
35